Skip to content

Commit 34be1e9

Browse files
committed
Setup CI
1 parent 6b9db6b commit 34be1e9

File tree

1 file changed

+18
-0
lines changed

1 file changed

+18
-0
lines changed

.github/workflows/ci.yml

+18
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
name: Rust
2+
3+
on: [push, pull_request]
4+
5+
env:
6+
CARGO_TERM_COLOR: always
7+
8+
jobs:
9+
build:
10+
11+
runs-on: [ubuntu-latest, macos-latest, windows-latest]
12+
13+
steps:
14+
- uses: actions/checkout@v3
15+
- name: Build
16+
run: cargo build --verbose
17+
- name: Run tests
18+
run: cargo test --verbose

0 commit comments

Comments
 (0)