Skip to content

👷 Use reporter: github-check #3

👷 Use reporter: github-check

👷 Use reporter: github-check #3

Workflow file for this run

name: 🧪 Check
on:
push:
branches:
- main
tags-ignore:
- '**'
pull_request:
branches:
- main
env:
CARGO_TERM_COLOR: always
jobs:
check:
name: 🧪 Check
runs-on: ubuntu-latest
steps:
- name: 📥 Checkout
uses: actions/checkout@v4
- name: ⚡️ Rust Cache
uses: Swatinem/rust-cache@v2
with:
cache-on-failure: true
- name: 🧪 Test
run: cargo test --workspace --all-features
- name: 💬 Clippy
uses: giraffate/clippy-action@v1
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
clippy_flags: -- -Dwarnings
reporter: github-check
continue-on-error: true