Skip to content

Commit 2e14b5b

Browse files
authored
Merge pull request #14 from nanato12/feature/add-ci
Add GitHub Action CI
2 parents 172e17c + 3deb6d5 commit 2e14b5b

File tree

1 file changed

+13
-0
lines changed

1 file changed

+13
-0
lines changed

.github/workflows/rust.yml

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
name: Rust
2+
3+
on: [pull_request, push]
4+
5+
jobs:
6+
build:
7+
runs-on: ubuntu-latest
8+
steps:
9+
- uses: actions/checkout@v1
10+
- name: Build
11+
run: cargo build --verbose
12+
- name: Run tests
13+
run: cargo test --verbose --tests

0 commit comments

Comments
 (0)