diff --git a/.github/workflows/test-packaging.yaml b/.github/workflows/test-packaging.yaml index 0fb818d..97ba3b1 100644 --- a/.github/workflows/test-packaging.yaml +++ b/.github/workflows/test-packaging.yaml @@ -40,6 +40,12 @@ jobs: make -C build-jw-foss pkg-install-release-deps OFFLINE=true make -C build-jw-foss pkg-rebuild-reinstall + - name: Run pre-build static code checks + shell: bash + run: | + set -euxo pipefail + make -C "${{ github.event.repository.name }}" check + - name: Build package shell: bash run: | @@ -48,6 +54,12 @@ jobs: make -C "${{ github.event.repository.name }}" pkg-install-testbuild-deps make -C "${{ github.event.repository.name }}" pkg-rebuild + - name: Run post-build static code checks + shell: bash + run: | + set -euxo pipefail + make -C "${{ github.event.repository.name }}" check + - name: Install package shell: bash run: |