Files
rxing/.github/workflows/rust.yml
Henry Schimke edc8e67685 move cli utility into repository
This commit also adds the `--workspace`` flag to the automated build and test scripts
2023-03-01 08:46:49 -06:00

25 lines
433 B
YAML

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@v3
- name: Check
run: cargo check --workspace --release --verbose
- name: Build
run: cargo build --workspace --release --verbose
- name: Run tests
run: cargo test --workspace --release --verbose