Skip to content

Commit

Permalink
ci: perform format, audit, lint, and coverage on linux only
Browse files Browse the repository at this point in the history
  • Loading branch information
marijanp committed Feb 6, 2024
1 parent 103bc73 commit 26db3a1
Showing 1 changed file with 15 additions and 2 deletions.
17 changes: 15 additions & 2 deletions .github/workflows/check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,21 @@ jobs:
uname -a
nix --version
- name: check
run: nix flake check -L --show-trace
- name: format
if: matrix.os == 'ubuntu-latest'
run: nix build -L --no-link --show-trace .#checks.x86_64-linux.treefmt

- name: audit
if: matrix.os == 'ubuntu-latest'
run: nix build -L --no-link --show-trace .#checks.x86_64-linux.audit

- name: lint
if: matrix.os == 'ubuntu-latest'
run: nix build -L --no-link --show-trace .#checks.x86_64-linux.lint

- name: coverage
if: matrix.os == 'ubuntu-latest'
run: nix build -L --no-link --show-trace .#checks.x86_64-linux.coverage-report

- name: kairos x86_64-linux
if: matrix.os == 'ubuntu-latest'
Expand Down

0 comments on commit 26db3a1

Please sign in to comment.