feat: update to noisepy-io v0.2.0 #883
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: pre-commit checks | |
on: | |
pull_request: | |
push: { branches: [main] } | |
workflow_dispatch: | |
jobs: | |
pre-commit-checks: | |
runs-on: ubuntu-22.04 | |
steps: | |
- name: Checkout Repo | |
uses: actions/[email protected] | |
- name: Setup Python | |
uses: actions/[email protected] | |
with: | |
python-version: '3.10' | |
- name: Install pre-commit and Jupyter | |
run: pip install pre-commit==3.3.3 jupyter==1.0.0 | |
- name: Run pre-commit checks | |
run: pre-commit run --all-files --show-diff-on-failure |