We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cb33e1b commit 0cd16feCopy full SHA for 0cd16fe
.github/workflows/ci.yml
@@ -4,9 +4,12 @@ jobs:
4
build:
5
runs-on: ${{ matrix.os }}
6
steps:
7
- - uses: actions/checkout@v2
+ - uses: actions/checkout@v4
8
- run: rustup default ${{ matrix.channel }}
9
- - uses: rust-lang/simpleinfra/github-actions/simple-ci@master
+ - name: Build
10
+ run: cargo build --tests --workspace
11
+ - name: Test
12
+ run: cargo test --workspace
13
strategy:
14
matrix:
15
os: [ubuntu-latest, macos-latest, windows-latest]
0 commit comments