Improve error message when network results do not exist (#182) #469
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: pre-commit | |
on: | |
push: | |
branches: [main, develop] | |
paths-ignore: | |
- ".vscode/**" | |
- ".idea/**" | |
tags: | |
- "*" | |
pull_request: | |
branches: [main, develop] | |
paths-ignore: | |
- ".vscode/**" | |
- ".idea/**" | |
jobs: | |
pre-commit: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
lfs: false | |
- uses: actions/setup-python@v5 | |
with: | |
python-version: "3.12" | |
- uses: pre-commit/action@v3.0.0 |