Skip to content

Commit

Permalink
macos-latest
Browse files Browse the repository at this point in the history
  • Loading branch information
bkrmendy committed Feb 8, 2024
1 parent 6da0b2c commit ab6d786
Showing 1 changed file with 10 additions and 1 deletion.
11 changes: 10 additions & 1 deletion .github/workflows/rust.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,11 +10,20 @@ env:
CARGO_TERM_COLOR: always

jobs:
build:
build-windows:
runs-on: windows-latest
steps:
- uses: actions/checkout@v3
- name: Build
run: cargo build --verbose
- name: Run tests
run: cargo test --verbose

build-macos:
runs-on: macos-latest
steps:
- uses: actions/checkout@v3
- name: Build
run: cargo build --verbose
- name: Run tests
run: cargo test --verbose

0 comments on commit ab6d786

Please sign in to comment.