Skip to content

Commit

Permalink
Update rust-ci.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
jamjamjon authored Apr 14, 2024
1 parent a4088a3 commit fa4f7f1
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions .github/workflows/rust-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,22 @@ on:
branches: [ "main" ]

jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, windows-latest, macOS-latest]
rust: [stable]

steps:
- uses: actions/checkout@v3
- name: Build
run: cargo build --examples --verbose
- name: Run tests
run: cargo test --examples --verbose
- name: Run check
run: cargo check --examples --verbose

check:
name: Check
runs-on: ${{ matrix.os }}
Expand Down

0 comments on commit fa4f7f1

Please sign in to comment.