Add build and test github action workflow
type: testing
This commit is contained in:
parent
98335f435d
commit
3affa8c5e1
13
.github/workflows/rust.yaml
vendored
Normal file
13
.github/workflows/rust.yaml
vendored
Normal file
|
@ -0,0 +1,13 @@
|
|||
name: Rust
|
||||
|
||||
on: [push]
|
||||
|
||||
jobs:
|
||||
build:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- uses: actions/checkout@v1
|
||||
- name: Build
|
||||
run: cargo build --verbose
|
||||
- name: Test
|
||||
run: cargo test --verbose
|
Loading…
Reference in New Issue
Block a user