wecli/.github/workflows/ci.yml

12 lines
263 B
YAML
Raw Permalink Normal View History

2024-07-19 16:31:21 +03:00
name: test suite
on: [push, pull_request]
jobs:
test:
name: cargo test
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: dtolnay/rust-toolchain@stable
- run: cargo check --all
- run: cargo test --all-features