Skip to content

Commit

Permalink
ci
Browse files Browse the repository at this point in the history
  • Loading branch information
rfuzzo committed Dec 15, 2023
1 parent a730259 commit e329778
Showing 1 changed file with 9 additions and 7 deletions.
16 changes: 9 additions & 7 deletions .github/workflows/rust.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,13 @@ env:

jobs:
check:
runs-on: windows-latest
runs-on: ${{ matrix.os }}

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

steps:
- name: checkout
uses: actions/checkout@v3
Expand All @@ -27,9 +33,5 @@ jobs:
toolchain: stable
override: true

- uses: actions-rs/cargo@v1
with:
command: build
- uses: actions-rs/cargo@v1
with:
command: test
- run: cargo build
- run: cargo test

0 comments on commit e329778

Please sign in to comment.