Skip to content

Commit

Permalink
test: MacOS and Windows on CI
Browse files Browse the repository at this point in the history
  • Loading branch information
Dustin Blackman committed Dec 1, 2023
1 parent 1fc213b commit 4cef11c
Showing 1 changed file with 15 additions and 1 deletion.
16 changes: 15 additions & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ on: [push, pull_request]
name: ci

jobs:
build_and_test:
test_coverage:
name: cargo-run-bin
runs-on: ubuntu-latest
steps:
Expand All @@ -30,3 +30,17 @@ jobs:
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
path-to-lcov: ./lcov.info

test:
name: cargo-run-bin
strategy:
matrix:
os: [macos-latest, windows-latest]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v2
- uses: actions-rs/toolchain@v1
with:
toolchain: stable
- name: Test
run: cargo test

0 comments on commit 4cef11c

Please sign in to comment.