Skip to content

ci

ci #107

Workflow file for this run

name: ci
on:
push:
branches:
- master
pull_request:
branches:
- master
schedule:
- cron: 00 4 * * *
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: dtolnay/rust-toolchain@stable
- uses: Swatinem/rust-cache@v2
- uses: taiki-e/install-action@v2
with:
tool: cargo-hack,taplo-cli
- run: taplo fmt --check
- run: cargo fmt --all -- --check
- run: cargo hack clippy --all-targets --feature-powerset --workspace -- --deny warnings
- run: cargo hack test --all-targets --feature-powerset --workspace