build: add just recipes to cross-check FreeBSD and Windows compilation #161
This file contains hidden or 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: Clippy | |
| on: | |
| push: | |
| branches: [ master, dev ] | |
| pull_request: | |
| branches: [ master ] | |
| env: | |
| CARGO_TERM_COLOR: always | |
| jobs: | |
| clippy-check: | |
| name: Run clippy | |
| runs-on: ubuntu-26.04 | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - name: Install system dependencies | |
| run: | | |
| sudo apt update | |
| sudo apt full-upgrade | |
| sudo apt install just | |
| - name: Update rust | |
| run: rustup update | |
| - name: Run clippy | |
| run: just clippy |