Skip to content

Commit

Permalink
feat: temp
Browse files Browse the repository at this point in the history
  • Loading branch information
ryutamago committed Nov 27, 2024
1 parent b89ccd0 commit 0dc68a8
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,17 +27,17 @@ jobs:
- uses: actions/checkout@v4
- run: nix --version
- name: Format
run: nix --accept-flake-config fmt -- --fail-on-change
run: nix fmt -- --fail-on-change
- name: Prevent blst
run: nix --accept-flake-config develop -j auto --command sh -c '[ -z "$(cargo tree | grep blst)" ]'
run: nix develop -j auto --command sh -c '[ -z "$(cargo tree | grep blst)" ]'
- name: Build
run: nix --accept-flake-config --log-format raw -L build -j auto .#{all,js_jstz}
- name: Flake check
run: nix --accept-flake-config --log-format raw --log-lines 70 -L flake check -j auto
run: nix --log-format raw --log-lines 70 -L flake check -j auto
# Coverage is part of nix flake check, but we want to upload it to Codecov
# So we run it again (it's cached) and upload the result
- name: Coverage
run: nix --accept-flake-config --log-format raw -L build .#checks.x86_64-linux.cargo-llvm-cov
run: nix --log-format raw -L build .#checks.x86_64-linux.cargo-llvm-cov
- name: Upload coverage to Codecov
uses: codecov/[email protected]
with:
Expand Down

0 comments on commit 0dc68a8

Please sign in to comment.