Skip to content

Commit 42b264d

Browse files
authored
Create CI.yml
1 parent 023cb7e commit 42b264d

1 file changed

Lines changed: 20 additions & 0 deletions

File tree

.github/workflows/CI.yml

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
name: Rust
2+
3+
on:
4+
push:
5+
branches:
6+
- main
7+
pull_request:
8+
9+
env:
10+
CARGO_TERM_COLOR: always
11+
12+
jobs:
13+
test:
14+
runs-on: ubuntu-latest
15+
steps:
16+
- uses: actions/checkout@v3
17+
- name: Build
18+
run: cargo build
19+
- name: Run tests
20+
run: cargo test

0 commit comments

Comments
 (0)