Bump serde_json from 1.0.145 to 1.0.146 in /rust/case2geojson #479
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: Lint | |
| on: | |
| push: | |
| pull_request: | |
| branches: | |
| - main | |
| # Build all of the projects and run them against the CASE graph | |
| jobs: | |
| lint: | |
| runs-on: ubuntu-latest | |
| steps: | |
| # Get the code from the repository | |
| - name: Get Repo | |
| uses: actions/checkout@v4 | |
| # Install pre-commit and run it | |
| - name: Pre-commit Checks | |
| run: | | |
| pip -q install pre-commit | |
| pre-commit run --all-files |