Skip to content

Commit

Permalink
ci: Fix nix install command in workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
RainingComputers committed Jan 9, 2025
1 parent fe24c5c commit e0f336f
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/quality-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
- name: Checkout
uses: actions/checkout@v2
- name: Install nix
run: sudo sh <(curl -L https://nixos.org/nix/install) --daemon --yes
uses: nixbuild/nix-quick-install-action@v29
- name: Run clang-format
run: nix-shell --run 'make format-dry-run'
Tidy:
Expand All @@ -27,7 +27,7 @@ jobs:
- name: Checkout
uses: actions/checkout@v2
- name: Install nix
run: sudo sh <(curl -L https://nixos.org/nix/install) --daemon --yes
uses: nixbuild/nix-quick-install-action@v29
- name: Run clang-tidy
run: nix-shell --run 'make tidy'
Test:
Expand All @@ -36,7 +36,7 @@ jobs:
- name: Checkout
uses: actions/checkout@v2
- name: Install nix
run: sudo sh <(curl -L https://nixos.org/nix/install) --daemon --yes
uses: nixbuild/nix-quick-install-action@v29
- name: Build debug executable
run: nix-shell --run 'CXX=clang++ make build GCOV=1'
- name: Run tests_runner
Expand Down

0 comments on commit e0f336f

Please sign in to comment.