Skip to content

Commit afc692b

Browse files
committed
Add CI
1 parent a7fcc97 commit afc692b

1 file changed

Lines changed: 20 additions & 0 deletions

File tree

.github/workflows/test.yaml

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

0 commit comments

Comments
 (0)