From fa3da37c3acfd310a9fec9ee908b5b9ceeff89af Mon Sep 17 00:00:00 2001 From: trs Date: Mon, 19 Aug 2024 15:09:02 +0200 Subject: [PATCH] fix ci again --- .github/workflows/ci.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index bdba97a..e74ccb0 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -23,7 +23,7 @@ jobs: nix_path: nixpkgs=channel:nixos-unstable - uses: DeterminateSystems/magic-nix-cache-action@v2 - name: Lint - run: nix develop --command "golangci-lint run" + run: nix develop --command golangci-lint run unit-tests: name: Unit tests @@ -37,7 +37,7 @@ jobs: nix_path: nixpkgs=channel:nixos-unstable - uses: DeterminateSystems/magic-nix-cache-action@v2 - name: Run units tests - run: nix develop --command "go test -json ./... > test.json" + run: nix develop --command go test -json ./... > test.json - name: Annotate tests if: always() uses: guyarb/golang-test-annotations@v0.5.1