1
0
Fork 0
mirror of https://github.com/alemidev/scope-tui.git synced 2024-11-14 18:59:19 +01:00
scope-tui/.github/workflows/rust.yml

23 lines
414 B
YAML
Raw Normal View History

2023-09-18 01:44:44 +02:00
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
2023-09-18 01:44:44 +02:00
- name: Run tests
run: cargo test --verbose --no-default-features --features=app,file