Browse Source

Create rust.yml

android
Roman Zeyde 5 years ago
committed by Roman Zeyde
parent
commit
cb81514a4d
  1. 17
      .github/workflows/rust.yml

17
.github/workflows/rust.yml

@ -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…
Cancel
Save