Skip to content

Commit

Permalink
added build on multiple platforms: ubuntu, windows and macos
Browse files Browse the repository at this point in the history
  • Loading branch information
olexiyb committed Jun 13, 2024
1 parent 2381cf6 commit 7fac1a6
Showing 1 changed file with 7 additions and 2 deletions.
9 changes: 7 additions & 2 deletions .github/workflows/rust.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,12 +11,17 @@ env:

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

runs-on: ubuntu-latest
env:
CARGO_TERM_COLOR: always

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

0 comments on commit 7fac1a6

Please sign in to comment.