Skip to content

Merge pull request #31 from alt-art/dependabot/cargo/clap-4.4.2 #191

Merge pull request #31 from alt-art/dependabot/cargo/clap-4.4.2

Merge pull request #31 from alt-art/dependabot/cargo/clap-4.4.2 #191

Workflow file for this run

name: CI
on:
[push, pull_request]
env:
CARGO_TERM_COLOR: always
jobs:
windows:
runs-on: windows-latest
steps:
- uses: actions/checkout@v3
- uses: Swatinem/rust-cache@v2
- name: Run tests
run: cargo test --verbose
linux:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- run: rustup component add clippy
- uses: Swatinem/rust-cache@v2
- uses: actions-rs/clippy-check@v1
with:
token: ${{ secrets.GITHUB_TOKEN }}
args: --all-features
- name: Run cargo fmt
run: cargo fmt --all -- --check
- name: Run tests
run: cargo test --verbose