Skip to content

Commit 64e6058

Browse files
author
Gonzalo Diaz
committed
[CONFIG] [Github Actions] Rust test on multiple OS.
1 parent c579b2b commit 64e6058

File tree

1 file changed

+6
-2
lines changed

1 file changed

+6
-2
lines changed

.github/workflows/rust.yml

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,12 @@ env:
1414

1515
jobs:
1616
build:
17-
18-
runs-on: ubuntu-24.04
17+
name: "RUST Build and Test"
18+
strategy:
19+
fail-fast: false
20+
matrix:
21+
os: ["windows-2022", "ubuntu-24.04", "macos-14"]
22+
runs-on: ${{ matrix.os }}
1923

2024
steps:
2125
- uses: actions/checkout@v4

0 commit comments

Comments
 (0)