-
Notifications
You must be signed in to change notification settings - Fork 27
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Summary: Nix didn't work out for me in other places. So I'm not going to maintian it here. Test Plan: Get GitHub green again.
- Loading branch information
1 parent
5a8ae03
commit 4feb316
Showing
4 changed files
with
11 additions
and
302 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,21 +1,22 @@ | ||
name: Nix | ||
|
||
name: "Test Suite" | ||
on: | ||
push: | ||
branches: | ||
- master | ||
- gh-readonly-queue/master/** | ||
pull_request: | ||
branches: | ||
- master | ||
|
||
jobs: | ||
tests: | ||
test: | ||
name: cargo test | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v3 | ||
- uses: cachix/install-nix-action@v20 | ||
with: | ||
github_access_token: ${{ secrets.GITHUB_TOKEN }} | ||
extra_nix_config: experimental-features = nix-command flakes | ||
- run: nix flake check | ||
- uses: actions/checkout@v4 | ||
- uses: dtolnay/rust-toolchain@nightly | ||
with: | ||
components: rust-src, rustfmt, clippy | ||
- run: cargo test --all-features | ||
- run: cargo fmt --check --all --verbose | ||
- run: cargo clippy --all-targets --all-features -- -D warnings | ||
- run: cargo build --release --all --all-targets |
This file was deleted.
Oops, something went wrong.