1
0
Fork 0
mirror of https://github.com/alemidev/scope-tui.git synced 2024-11-14 10:49:20 +01:00
scope-tui/.github/workflows/rust.yml
2024-04-05 00:23:13 +02:00

22 lines
414 B
YAML

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 --no-default-features --features=app,file
- name: Run tests
run: cargo test --verbose --no-default-features --features=app,file