From eb1594e9bcea076779e960316c831640a5ed30ca Mon Sep 17 00:00:00 2001 From: Evangelos Paterakis Date: Sat, 1 Jul 2023 11:18:40 +0300 Subject: [PATCH] feat(ci): lint --- .github/workflows/build.yml | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 4a2575490..b8160c882 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -7,9 +7,18 @@ concurrency: cancel-in-progress: true name: CI jobs: + lint: + name: "Vala Lint" + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v3 + - uses: elementary/actions/vala-lint@master + with: + conf: vala-lint.conf flatpak-builder: name: "Flatpak Builder" runs-on: ubuntu-latest + needs: [ lint ] container: image: bilelmoussaoui/flatpak-github-actions:gnome-43 options: --privileged @@ -39,6 +48,7 @@ jobs: snap-builder: name: "Snap Builder" runs-on: ubuntu-latest + needs: [ lint ] strategy: matrix: arch: [x86_64, aarch64]