1
0
Fork 0
mirror of https://github.com/alemidev/scope-tui.git synced 2024-11-13 02:09:20 +01:00

ci: add default rust ci

This commit is contained in:
əlemi 2023-09-18 01:44:44 +02:00 committed by GitHub
parent 407d0251b4
commit e559798385
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

22
.github/workflows/rust.yml vendored Normal file
View file

@ -0,0 +1,22 @@
name: Rust
on:
push:
branches: [ "dev", "main" ]
pull_request:
branches: [ "dev", "main" ]
env:
CARGO_TERM_COLOR: always
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Build
run: cargo build --verbose
- name: Run tests
run: cargo test --verbose