Files
lighthouse/.github/workflows/rust.yml
2019-11-22 17:42:16 +11:00

16 lines
309 B
YAML

name: Rust
on: [push]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- name: Run release tests with all features
run: cargo test --release --all --all-features
- name: Check formatting with cargo fmt
run: cargo test --release --all --all-features