Skip to content

Commit b28f641

Browse files
committed
test
1 parent 840f544 commit b28f641

File tree

1 file changed

+22
-0
lines changed

1 file changed

+22
-0
lines changed

.github/workflows/check.yml

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
name: CI
2+
on:
3+
push:
4+
5+
jobs:
6+
what:
7+
name: what
8+
runs-on: ${{ matrix.os }}
9+
strategy:
10+
fail-fast: true
11+
matrix:
12+
os: [ubuntu-latest, macos-latest, windows-latest]
13+
steps:
14+
- uses: actions/checkout@v4
15+
with:
16+
submodules: true
17+
- uses: ./.github/actions/install-rust
18+
- run: cargo build --release --timings
19+
- uses: actions/upload-artifact@v4
20+
with:
21+
name: timings-${{ matrix.os }}
22+
path: target/cargo-timings

0 commit comments

Comments
 (0)