fix: spectrum smoothing and autocorrelations #856
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/checkout@v3.3.0 | |
- name: Setup Python | |
uses: actions/setup-python@v4.5.0 | |
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 |