Skip to content

Commit 13cf233

Browse files
feat: Run tests on multiple operating systems
This commit updates the CI/CD workflow to run the test suite on ubuntu-latest, windows-latest, and macos-latest. This is achieved by using a matrix strategy in the 'test' job.
1 parent dfcf00a commit 13cf233

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

.github/workflows/ci-cd.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,9 +32,10 @@ jobs:
3232

3333
test:
3434
needs: lint
35-
runs-on: ubuntu-latest
35+
runs-on: ${{ matrix.os }}
3636
strategy:
3737
matrix:
38+
os: [ubuntu-latest, windows-latest, macos-latest]
3839
python-version: ["3.10", "3.11", "3.12"]
3940
steps:
4041
- uses: actions/checkout@ff7abcd0c3c05ccf6adc123a8cd1fd4fb30fb493

0 commit comments

Comments
 (0)