Skip to content

Use feature flags instead of command line arguments (#23) #142

Use feature flags instead of command line arguments (#23)

Use feature flags instead of command line arguments (#23) #142

Workflow file for this run

name: Rust
on:
push:
branches: [ "*" ]
pull_request:
branches: [ "*" ]
env:
CARGO_TERM_COLOR: always
jobs:
linter:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Update toolchain
run: rustup update stable
- name: Check
run: cargo check --features all
- name: Tests
run: cargo test --features all