Skip to content
Open
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: 11 additions & 5 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,11 +9,17 @@ jobs:
test:
strategy:
matrix:
os: [
ubuntu-latest, # x86_64
macos-13, # x86_64
]
runs-on: ${{ matrix.os }}
include:
- runner: ubuntu-latest
os: Linux
arch: x86_64
- runner: macos-13
os: macOS
arch: x86_64
- runner: ubuntu-24.04-arm
os: Linux
arch: aarch64
runs-on: ${{ matrix.runner }}
steps:
- uses: actions/checkout@v4
- run: rustup component add rustfmt rustc-dev
Expand Down
Loading