committed by
Roman Zeyde
1 changed files with 17 additions and 0 deletions
@ -0,0 +1,17 @@ |
|||
name: Rust |
|||
|
|||
on: [push] |
|||
|
|||
jobs: |
|||
build: |
|||
|
|||
runs-on: ubuntu-latest |
|||
|
|||
steps: |
|||
- uses: actions/checkout@v1 |
|||
- name: Check |
|||
run: cargo check --verbose |
|||
- name: Build |
|||
run: cargo build --verbose |
|||
- name: Run tests |
|||
run: cargo test --verbose |
Loading…
Reference in new issue