Skip to content

feat(gha): use foundry-runner for test.yml github action workflow #10581

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Draft
wants to merge 1 commit into
base: master
Choose a base branch
from
Draft
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/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:
secrets: inherit

docs:
runs-on: ubuntu-latest
runs-on: foundry-runner
timeout-minutes: 30
steps:
- uses: actions/checkout@v4
Expand All @@ -43,7 +43,7 @@ jobs:
force_orphan: true

doctest:
runs-on: ubuntu-latest
runs-on: foundry-runner
timeout-minutes: 30
steps:
- uses: actions/checkout@v4
Expand All @@ -54,7 +54,7 @@ jobs:
- run: cargo test --workspace --doc

codespell:
runs-on: ubuntu-latest
runs-on: foundry-runner
timeout-minutes: 30
steps:
- uses: actions/checkout@v4
Expand All @@ -63,7 +63,7 @@ jobs:
skip: "*.json"

clippy:
runs-on: ubuntu-latest
runs-on: foundry-runner
timeout-minutes: 30
steps:
- uses: actions/checkout@v4
Expand All @@ -76,7 +76,7 @@ jobs:
RUSTFLAGS: -Dwarnings

rustfmt:
runs-on: ubuntu-latest
runs-on: foundry-runner
timeout-minutes: 30
steps:
- uses: actions/checkout@v4
Expand All @@ -87,7 +87,7 @@ jobs:
- run: cargo fmt --all --check

forge-fmt:
runs-on: ubuntu-latest
runs-on: foundry-runner
timeout-minutes: 30
steps:
- uses: actions/checkout@v4
Expand All @@ -100,7 +100,7 @@ jobs:
run: ./.github/scripts/format.sh --check

crate-checks:
runs-on: ubuntu-latest
runs-on: foundry-runner
timeout-minutes: 30
steps:
- uses: actions/checkout@v4
Expand All @@ -115,7 +115,7 @@ jobs:
uses: ithacaxyz/ci/.github/workflows/deny.yml@main

ci-success:
runs-on: ubuntu-latest
runs-on: foundry-runner
if: always()
needs:
- nextest
Expand Down
Loading