diff --git a/.github/workflows/action.yml b/.github/workflows/action.yml index 5a20cc8..fd14414 100644 --- a/.github/workflows/action.yml +++ b/.github/workflows/action.yml @@ -40,18 +40,14 @@ jobs: run: | nix develop --no-pure-eval --accept-flake-config --command just build-release - - name: Tests + - name: Lint run: | - nix develop --no-pure-eval --accept-flake-config --command just test + nix develop --no-pure-eval --accept-flake-config --command just lint-report - name: Coverage run: | nix develop --no-pure-eval --accept-flake-config --command just coverage-ci - - name: Lint - run: | - nix develop --no-pure-eval --accept-flake-config --command just lint-report - - name: Sonar analysis uses: SonarSource/sonarqube-scan-action@v6 env: @@ -62,7 +58,7 @@ jobs: run: nix build --no-pure-eval --accept-flake-config - name: Package Linux binary - run: zip jj-cz-linux-x86_64.zip result/bin/jj-cz LICENSE.GPL.md LICENSE.MIT.md + run: mv result/bin/jj-cz && zip jj-cz-linux-x86_64.zip jj-cz LICENSE.GPL.md LICENSE.MIT.md - name: Upload Linux artifact uses: actions/upload-artifact@v3