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
15 changes: 12 additions & 3 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,15 +9,24 @@ on:

jobs:
test:
runs-on: ubuntu-latest
name: test-all # PRs can require just this job to pass, regardless of matrix changes below
needs: [test_matrix]
steps:
- run: echo "Test-matrix successful" # anything with zero exit code

test_matrix:
strategy:
matrix:
os: [macos-15-intel, ubuntu-latest]
solc: ['0.8.30', '0.8.25']
os: [macos-15-intel, ubuntu-latest] # arm64 and Windows aren't supported
solc: ['0.8.30', '0.8.25'] # arbitrary, but different
name: setup-solc
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v5

- id: setup
uses: arr4n/setup-solc@main
uses: ./
with:
version: ${{matrix.solc}}

Expand Down