0
0
mirror of https://github.com/neon-mmd/websurfx.git synced 2024-10-18 06:22:53 -04:00
websurfx/.github/workflows/clippy.yml
2023-05-13 20:03:07 +03:00

20 lines
406 B
YAML

name: Clippy check
on:
push:
branches:
- "**"
pull_request:
branches:
- "rolling"
jobs:
clippy_check:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- run: rustup component add clippy
- uses: actions-rs/clippy-check@v1
with:
token: ${{ secrets.GITHUB_TOKEN }}
args: --all-targets --all-features -- -D warnings