Bump serde #2
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: Checks | ||
"on": | ||
push: | ||
branches: | ||
- master | ||
pull_request: | ||
branches: | ||
- '*' | ||
# https://github.com/rustsec/audit-check#granular-permissions | ||
github-token: | ||
action-input: | ||
input: token | ||
is-default: false | ||
permissions: | ||
issues: write | ||
issues-reason: to create issues | ||
checks: write | ||
checks-reason: to create check | ||
permissions: | ||
checks: write | ||
contents: read | ||
env: | ||
RUSTFLAGS: "-Dwarnings" | ||
jobs: | ||
checks: | ||
name: Checks | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Check out code | ||
uses: actions/checkout@v4 | ||
- uses: actions-rs/toolchain@v1 | ||
with: | ||
components: clippy | ||
toolchain: stable | ||
- uses: Swatinem/rust-cache@v1 | ||
# - name: Dependency Licenses Review | ||
# run: make check-dependency-licenses | ||
- name: Run cargo audit | ||
uses: rustsec/[email protected] | ||
with: | ||
token: ${{ secrets.GITHUB_TOKEN }} | ||
# https://doc.rust-lang.org/stable/clippy/continuous_integration/github_actions.html | ||
- name: Run Clippy | ||
run: cargo clippy --all-targets --all-features | ||
- name: Check for spelling errors | ||
uses: reviewdog/action-misspell@v1 | ||
with: | ||
exclude: ./vendor/* | ||
fail_on_error: true | ||
github_token: ${{ secrets.GITHUB_TOKEN }} | ||
ignore: importas | ||
reporter: github-check | ||
# - name: Check if source code files have license header | ||
# run: make check-license-headers |