wip cli for vv autos #1077
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# this tests that the latest docker image works, and does linter checks | |
# linter checks happen here because docker images are faster than waiting for | |
# dependencies to install on GitHub Actions VMs | |
on: [push, pull_request] | |
name: Docker Tests | |
jobs: | |
check: | |
name: Docker Test and Release | |
runs-on: ubuntu-latest | |
container: mwatelescope/birli:latest | |
steps: | |
- name: Checkout sources | |
uses: actions/checkout@v3 | |
with: | |
fetch-depth: 0 | |
- run: /opt/cargo/bin/cargo check | |
- run: /opt/cargo/bin/cargo fmt --all -- --check | |
- run: /opt/cargo/bin/cargo clippy --all-targets --all-features -- -D warnings | |
- run: /opt/cargo/bin/cargo test --release | |
- run: /opt/cargo/bin/cargo test --no-default-features --release --features=cli |