Skip to content

Commit f6f4f81

Browse files
committed
ci
1 parent ae7d206 commit f6f4f81

File tree

1 file changed

+26
-0
lines changed

1 file changed

+26
-0
lines changed

.github/workflows/ci.yml

+26
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
name: CI
2+
3+
on:
4+
push:
5+
pull_request:
6+
7+
env:
8+
CARGO_TERM_COLOR: always
9+
10+
jobs:
11+
build:
12+
runs-on: ubuntu-latest
13+
strategy:
14+
matrix:
15+
toolchain:
16+
- stable
17+
18+
steps:
19+
- uses: actions/checkout@v4
20+
- name: use stable toolchain
21+
uses: dtolnay/rust-toolchain@master
22+
with:
23+
toolchain: stable
24+
- name: build
25+
run: cargo build --verbose
26+

0 commit comments

Comments
 (0)