Skip to content

Dummy commit 1

Dummy commit 1 #28

Workflow file for this run

name: Continuous integration
on:
push:
branches: [ main, develop, test/improve-ci ]
pull_request:
branches: [ main, develop ]
env:
CARGO_TERM_COLOR: always
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- run: rustup toolchain install stable --profile minimal
- uses: Swatinem/rust-cache@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@v3
- run: rustup toolchain install stable --profile minimal
- uses: Swatinem/rust-cache@v2
- name: Install cargo-all-features
run: cargo install cargo-all-features
- name: Run tests
run: cargo test-all-features --verbose