Skip to content

Commit e9d8c41

Browse files
committed
Update ci.yml
1 parent 90e932f commit e9d8c41

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

.github/workflows/ci.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,13 +13,15 @@ jobs:
1313
strategy:
1414
matrix:
1515
os: [ubuntu-latest]
16+
target: [x86_64-unknown-linux-gnu, aarch64-unknown-linux-gnu]
1617
runs-on: ${{ matrix.os }}
1718

1819
steps:
1920
- name: Install latest rust toolchain
2021
uses: actions-rs/toolchain@v1
2122
with:
2223
toolchain: "1.78.0"
24+
target: ${{ matrix.target }}
2325
default: true
2426
override: true
2527

@@ -39,14 +41,15 @@ jobs:
3941
strategy:
4042
matrix:
4143
os: [macos-latest]
44+
target: [x86_64-apple-darwin, aarch64-apple-darwin]
4245
runs-on: ${{ matrix.os }}
4346

4447
steps:
4548
- name: Install latest rust toolchain
4649
uses: actions-rs/toolchain@v1
4750
with:
4851
toolchain: "1.78.0"
49-
target: x86_64-apple-darwin
52+
target: ${{ matrix.target }}
5053
default: true
5154
override: true
5255

0 commit comments

Comments
 (0)