Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 8 additions & 8 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
name: cargo test
runs-on: ubuntu-latest-8-cores
steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6

Check warning on line 18 in .github/workflows/ci.yml

View workflow job for this annotation

GitHub Actions / zizmor

artipacked

ci.yml:18: credential persistence through GitHub Actions artifacts: does not set persist-credentials: false
- name: Install Rust
uses: dtolnay/rust-toolchain@stable
- uses: taiki-e/install-action@cargo-llvm-cov
Expand Down Expand Up @@ -44,7 +44,7 @@
name: Check for breaking API changes
runs-on: ubuntu-latest-8-cores
steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6

Check warning on line 47 in .github/workflows/ci.yml

View workflow job for this annotation

GitHub Actions / zizmor

artipacked

ci.yml:47: credential persistence through GitHub Actions artifacts: does not set persist-credentials: false
- uses: taiki-e/install-action@just
- name: Install Rust
uses: dtolnay/rust-toolchain@stable
Expand All @@ -61,7 +61,7 @@
name: Check lints
runs-on: ubuntu-latest-8-cores
steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6

Check warning on line 64 in .github/workflows/ci.yml

View workflow job for this annotation

GitHub Actions / zizmor

artipacked

ci.yml:64: credential persistence through GitHub Actions artifacts: does not set persist-credentials: false
- uses: taiki-e/install-action@just
- name: Install Rust
uses: dtolnay/rust-toolchain@stable
Expand All @@ -76,7 +76,7 @@
name: Check wasm
runs-on: ubuntu-latest-8-cores
steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6

Check warning on line 79 in .github/workflows/ci.yml

View workflow job for this annotation

GitHub Actions / zizmor

artipacked

ci.yml:79: credential persistence through GitHub Actions artifacts: does not set persist-credentials: false
- uses: taiki-e/install-action@just
- name: Install Rust
uses: dtolnay/rust-toolchain@stable
Expand All @@ -91,7 +91,7 @@
name: cargo fmt
runs-on: ubuntu-latest-8-cores
steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6

Check warning on line 94 in .github/workflows/ci.yml

View workflow job for this annotation

GitHub Actions / zizmor

artipacked

ci.yml:94: credential persistence through GitHub Actions artifacts: does not set persist-credentials: false
- name: Install Rust
uses: dtolnay/rust-toolchain@stable
with:
Expand All @@ -104,7 +104,7 @@
name: Check modeling-cmds can release
runs-on: ubuntu-latest-8-cores
steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6

Check warning on line 107 in .github/workflows/ci.yml

View workflow job for this annotation

GitHub Actions / zizmor

artipacked

ci.yml:107: credential persistence through GitHub Actions artifacts: does not set persist-credentials: false
- name: Install Rust
uses: dtolnay/rust-toolchain@stable
- name: Dry-run a release of modeling-cmds
Expand All @@ -113,8 +113,8 @@
check-typos:
runs-on: ubuntu-latest
steps:
- name: Checkout

Check warning on line 116 in .github/workflows/ci.yml

View workflow job for this annotation

GitHub Actions / zizmor

artipacked

ci.yml:116: credential persistence through GitHub Actions artifacts: does not set persist-credentials: false
uses: actions/checkout@v5
uses: actions/checkout@v6
- name: Run codespell
uses: crate-ci/typos@v1.39.2

Expand All @@ -122,8 +122,8 @@
name: Check Cargo.toml is sorted
runs-on: ubuntu-latest
steps:
- name: Checkout

Check warning on line 125 in .github/workflows/ci.yml

View workflow job for this annotation

GitHub Actions / zizmor

artipacked

ci.yml:125: credential persistence through GitHub Actions artifacts: does not set persist-credentials: false
uses: actions/checkout@v5
uses: actions/checkout@v6
- name: Install cargo-sort
run: cargo install cargo-sort
- name: Run check
Expand Down
Loading