Skip to content

Commit

Permalink
Update rust.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
Jzow authored Dec 26, 2023
1 parent 347e1e8 commit 1a58a42
Showing 1 changed file with 8 additions and 2 deletions.
10 changes: 8 additions & 2 deletions .github/workflows/rust.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,12 +11,18 @@ env:

jobs:
build:

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

steps:
- uses: actions/checkout@v3
- name: Build 00_data_operation
run: cd 00_data_operation && cargo build --verbose
- name: Run 00_data_operation tests
run: cd 00_data_operation && cargo test --verbose
- name: Build 01_linear_neural_network
run: cd 01_linear_neural_network && cargo build --verbose
- name: Run 01_linear_neural_network tests
run: cd 01_linear_neural_network && cargo test --verbose

0 comments on commit 1a58a42

Please sign in to comment.