Skip to content

feat(notify): move from compio-runtime #20

feat(notify): move from compio-runtime

feat(notify): move from compio-runtime #20

Workflow file for this run

name: Check
on:
push:
branches:
- main
paths:
- "Cargo.toml"
- "**/*.rs"
- ".github/workflows/ci_check.yml"
pull_request:
branches:
- main
paths:
- "Cargo.toml"
- "**/*.rs"
- ".github/workflows/ci_check.yml"
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}-${{ github.event_name }}
cancel-in-progress: true
env:
RUST_BACKTRACE: 1
jobs:
check:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Setup Rust Toolchain
run: |
rustup default nightly
rustup component add clippy
- uses: taiki-e/install-action@cargo-hack
- name: Check clippy
shell: bash
run: |
cargo hack clippy --feature-powerset --no-dev-deps -- -Dwarnings
- name: Check Docs
run: |
cargo doc --all-features --no-deps