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
22 changes: 19 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
strategy:
matrix:
os:
- ubuntu-latest
- UbuntuLatest32Cores128G
- macos-latest
runs-on: ${{ matrix.os }}
steps:
Expand All @@ -35,7 +35,7 @@ jobs:

cargo-deny:
name: Advisories, licenses, sources
runs-on: ubuntu-latest
runs-on: UbuntuLatest32Cores128G
permissions:
contents: read
# For flakehub-cache-action
Expand All @@ -50,7 +50,23 @@ jobs:

flake-checker:
name: Check flake.lock health
runs-on: ubuntu-latest
runs-on: UbuntuLatest32Cores128G
steps:
- uses: actions/checkout@v4
- uses: DeterminateSystems/flake-checker-action@main

success:
runs-on: ubuntu-latest
needs:
- checks
- cargo-deny
- flake-checker
if: ${{ always() }}
steps:
- run: "true"
- run: |
echo "A dependent in the build matrix failed."
exit 1
if: |
contains(needs.*.result, 'failure') ||
contains(needs.*.result, 'cancelled')
Loading