repository template for Rust projects

ci: fix spindle CI workflows #3

merged opened by samanthanguyen.me targeting main from ci
Labels

None yet.

assignee

None yet.

Participants 1
AT URI
at://did:plc:smd2mvg2dao4rqnnz6qexdov/sh.tangled.repo.pull/3mbg556qxys22
+17 -24
Diff #1
+8 -10
.tangled/workflows/build.yml
··· 1 1 when: 2 - - event: ["pull_request"] 2 + - event: ["push", "pull_request"] 3 3 branch: ["main"] 4 4 5 - engine: 6 - - nixery 5 + engine: "nixery" 7 6 8 7 dependencies: 9 - - cargo 10 - - rustup 8 + nixpkgs: 9 + - cargo 10 + - rustup 11 11 12 12 steps: 13 - - name: Checkout repository 14 - uses: actions/checkout@v6 15 13 - name: Setup Rust 16 - run: | 14 + command: | 17 15 rustup set profile minimal 18 16 rustup toolchain install stable 19 17 rustup override set stable 20 18 - name: Print environment info 21 - run: | 19 + command: | 22 20 cargo --version 23 21 rustup --version 24 22 - name: Build 25 - run: cargo build --verbose --all-features 23 + command: cargo build --verbose --all-features
+2 -3
.tangled/workflows/codeqa-clippy.yml
··· 1 1 when: 2 - - event: ["pull_request"] 2 + - event: ["push", "pull_request"] 3 3 branch: ["main"] 4 4 5 - engine: 6 - - nixery 5 + engine: "nixery" 7 6 8 7 dependencies: 9 8 nixpkgs:
+2 -3
.tangled/workflows/codeqa-rustfmt.yml
··· 1 1 when: 2 - - event: ["pull_request"] 2 + - event: ["push", "pull_request"] 3 3 branch: ["main"] 4 4 5 - engine: 6 - - nixery 5 + engine: "nixery" 7 6 8 7 dependencies: 9 8 nixpkgs:
+2 -4
.tangled/workflows/test-miri.yml
··· 1 1 when: 2 - - event: ["pull_request"] 2 + - event: ["push", "pull_request"] 3 3 branch: ["main"] 4 4 5 - engine: 6 - - nixery 5 + engine: "nixery" 7 6 8 7 dependencies: 9 8 nixpkgs: 10 9 - cargo 11 - - cargo-llvm-codecov 12 10 - rustup 13 11 14 12 steps:
+3 -4
.tangled/workflows/test.yml
··· 1 1 when: 2 - - event: ["pull_request"] 2 + - event: ["push", "pull_request"] 3 3 branch: ["main"] 4 4 5 - engine: 6 - - nixery 5 + engine: "nixery" 7 6 8 7 dependencies: 9 8 nixpkgs: 10 9 - cargo 11 - - cargo-llvm-codecov 10 + - cargo-llvm-cov 12 11 - rustup 13 12 14 13 steps:

History

2 rounds 0 comments
sign up or login to add to the discussion
2 commits
expand
ci: fix spindle CI workflows
ci: fix dependencies
expand 0 comments
pull request successfully merged
expand 0 comments