diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 01312ffc6f..2b0a62bef4 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -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