chore(deps): update rust crate parking_lot to v0.12.4 #980
Workflow file for this run
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: CI | |
on: [push, pull_request] | |
jobs: | |
lint: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- run: | | |
sudo apt-get update | |
sudo apt-get install \ | |
libfreetype6-dev \ | |
libfontconfig1-dev | |
- run: cargo fetch --locked | |
- run: cargo clippy -- --deny warnings --allow mismatched_lifetime_syntaxes | |
- run: cargo fmt --check |