Skip to content

Commit

Permalink
Modified GH action to run on other OSes
Browse files Browse the repository at this point in the history
  • Loading branch information
manforowicz committed Dec 10, 2024
1 parent 82eddd3 commit 5075763
Showing 1 changed file with 7 additions and 3 deletions.
10 changes: 7 additions & 3 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,20 +5,24 @@ name: Cargo Build & Test

on:
push:
pull_request:
# pull_request:

env:
CARGO_TERM_COLOR: always

jobs:
build_and_test:
name: Rust Build & Test
runs-on: ubuntu-latest
runs-on: ${{ matrix.os }}
strategy:
matrix:
os:
- ubuntu-latest
- windows-latest
- macos-latest
toolchain:
- stable
# - beta
- beta
- nightly
steps:
- uses: actions/checkout@v3
Expand Down

0 comments on commit 5075763

Please sign in to comment.