Skip to content

Commit

Permalink
run it on more oses
Browse files Browse the repository at this point in the history
  • Loading branch information
mmaroti committed Dec 7, 2024
1 parent 001138a commit 21a022b
Showing 1 changed file with 7 additions and 4 deletions.
11 changes: 7 additions & 4 deletions .github/workflows/rust.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,12 +11,15 @@ env:

jobs:
build:
runs-on: ubuntu-latest
runs-on: [ubuntu-latest, windows-latest, macos-latest]
steps:
- uses: actions/checkout@v4
- name: Checkout
uses: actions/checkout@v4
with:
submodules: 'true'
submodules: true
- name: Build
run: RUST_BACKTRACE=1 cargo build --verbose
run: cargo build --verbose
- name: Run tests
run: cargo test --verbose
- name: Run tests in release
run: cargo test --verbose --release

0 comments on commit 21a022b

Please sign in to comment.