diff options
| author | Clément Sibille <clement.sibille@protonmail.com> | 2021-10-06 22:17:39 +0200 | 
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-10-06 22:17:39 +0200 | 
| commit | 0c8723d108e78ac27c3302535c8ac6325135c277 (patch) | |
| tree | 10c0350aa35971eba03b4c98aa8ed9827ccc52c1 | |
| parent | f1eadde8b145bc0b5873b8396b709b54a6a21b5a (diff) | |
Add github action for compilation and tests
| -rw-r--r-- | .github/workflows/rust.yml | 22 | 
1 files changed, 22 insertions, 0 deletions
diff --git a/.github/workflows/rust.yml b/.github/workflows/rust.yml new file mode 100644 index 0000000..7ae98f3 --- /dev/null +++ b/.github/workflows/rust.yml @@ -0,0 +1,22 @@ +name: Rust + +on: +  push: +    branches: [ main ] +  pull_request: +    branches: [ main ] + +env: +  CARGO_TERM_COLOR: always + +jobs: +  build: + +    runs-on: ubuntu-latest + +    steps: +    - uses: actions/checkout@v2 +    - name: Build +      run: cargo build --verbose +    - name: Run tests +      run: cargo test --verbose  | 
