Browse Source

added rust workflow for windows and mac

Signed-off-by: Karan Gauswami <[email protected]>
pull/30/head
Karan Gauswami 4 months ago
parent
commit
b50e2ace2d
No known key found for this signature in database GPG Key ID: 4457EA801DBC82E6
  1. 7
      .github/workflows/rust.yml

7
.github/workflows/rust.yml

@ -11,9 +11,12 @@ env:
jobs:
build:
runs-on: ubuntu-latest
runs-on: ${{ matrix.os }}
strategy:
matrix:
name: [linux, windows, macos]
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
- name: Run tests
run: cargo test --verbose -- --nocapture

Loading…
Cancel
Save