Skip to content

Commit

Permalink
Testing macos and windows runners
Browse files Browse the repository at this point in the history
  • Loading branch information
Grandine Team committed Mar 23, 2024
1 parent 462dada commit d74988e
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,11 @@ on: [push]
jobs:
build:

runs-on: ubuntu-latest
runs-on: ${{ matrix.os }}

strategy:
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]

steps:
- uses: actions/checkout@v4
Expand All @@ -20,6 +24,7 @@ jobs:
- uses: Swatinem/rust-cache@v2
- name: Run formatter
run: cargo fmt --check
if: matrix.os == 'ubuntu-latest'
- name: Run clippy
run: bash scripts/ci/clippy.bash
- name: Run tests
Expand Down

0 comments on commit d74988e

Please sign in to comment.