12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455 |
- {{{{raw}}}}
- name: Check
- on:
- push:
- branches:
- - main
- paths:
- - ".github/workflows/check.yml"
- - "**/*.rs"
- - "**/Cargo.toml"
- pull_request:
- branches:
- - main
- paths:
- - ".github/workflows/check.yml"
- - "**/*.rs"
- - "**/Cargo.toml"
- concurrency:
- group: ${{ github.workflow }}-${{ github.ref }}
- cancel-in-progress: true
- jobs:
- fmt:
- runs-on: ubuntu-latest
- steps:
- - uses: actions/checkout@v4
- - uses: dtolnay/rust-toolchain@stable
- with:
- components: rustfmt
- - run: cargo fmt --all -- --check
- clippy:
- strategy:
- fail-fast: false
- matrix:
- platform: [ubuntu-latest, macos-latest, windows-latest]
- runs-on: ${{ matrix.platform }}
- steps:
- - uses: actions/checkout@v4
- - uses: dtolnay/rust-toolchain@stable
- with:
- components: clippy
- - name: install webkit2gtk
- if: matrix.platform == 'ubuntu-latest'
- run: |
- sudo apt-get update
- sudo apt-get install -y webkit2gtk-4.1
- - uses: Swatinem/rust-cache@v2
- - run: cargo clippy --all-targets --all-features -- -D warnings
- {{{{/raw}}}}
|