🚧 Refactor methods #83
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: 🧪 Check | |
on: | |
push: | |
branches: | |
- main | |
- dev | |
tags-ignore: | |
- '**' | |
pull_request: | |
branches: | |
- main | |
workflow_dispatch: { } | |
env: | |
CARGO_TERM_COLOR: "always" | |
RUSTC_WRAPPER: "sccache" | |
SCCACHE_GHA_ENABLED: "true" | |
jobs: | |
check: | |
name: 🧪 Check | |
runs-on: ubuntu-latest | |
steps: | |
- name: ⬆️ Update Rust | |
run: rustup update --no-self-update | |
- name: 📥 Checkout | |
uses: actions/checkout@v4 | |
- name: ⚡️ Rust Cache | |
uses: Swatinem/rust-cache@v2 | |
with: | |
cache-on-failure: true | |
- name: ⚡️ Shared Compilation Cache | |
uses: mozilla-actions/[email protected] | |
- name: 🧪 Install coverage tools | |
uses: taiki-e/install-action@cargo-llvm-cov | |
- name: 🧪 Test | |
run: cargo llvm-cov --all-features --workspace --codecov --output-path=codecov.json | |
- name: 📤 Upload coverage | |
uses: codecov/codecov-action@v4 | |
env: | |
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }} | |
with: | |
files: codecov.json | |
- name: 💬 Clippy | |
uses: giraffate/clippy-action@v1 | |
with: | |
github_token: ${{ secrets.GITHUB_TOKEN }} | |
clippy_flags: -- -Dwarnings | |
reporter: github-check | |
continue-on-error: true |