Skip to content

Merge pull request #2 from dsully/complete #18

Merge pull request #2 from dsully/complete

Merge pull request #2 from dsully/complete #18

Workflow file for this run

name: Continuous integration
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
env:
CARGO_TERM_COLOR: always
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Fmt
run: cargo fmt --all --verbose -- --check
- name: Clippy
run: cargo clippy --verbose -- -D warnings
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Install cargo-all-features
run: cargo install cargo-all-features
- name: Run tests
run: cargo test-all-features --verbose