bibliofile/.github/workflows/rust.yml
Daniel Jones 2fe2421e6d - Refactored code to return text
- This is to make sending data to the TUI easier
2023-07-20 10:28:40 -05:00

23 lines
342 B
YAML

name: Rust
on:
push:
branches: [ "master" ]
pull_request:
branches: [ "master" ]
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