From 04af319f912959f6c52b9ae01965269a5dc2df1e Mon Sep 17 00:00:00 2001 From: Lucien Cartier-Tilet Date: Sat, 14 Mar 2026 01:03:03 +0100 Subject: [PATCH] ci: remove tests, redundant with coverage --- .github/workflows/action.yml | 10 +++------- 1 file changed, 3 insertions(+), 7 deletions(-) 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