chore: bump anyhow from 1.0.93 to 1.0.94 #212
Workflow file for this run
This file contains 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: Protobuf | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
branches: | |
- main | |
jobs: | |
Linting: | |
runs-on: ubuntu-24.04 | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v4 | |
- name: Setup python | |
uses: actions/setup-python@v5 | |
with: | |
python-version: '3.12' | |
- name: Install protolint | |
# We need to use `--break-system-packages` to work around the "This | |
# environment is externally managed" errors. | |
run: | | |
pip install --break-system-packages protolint-bin | |
- name: Run protolint | |
run: | | |
make protolint-check |