Skip to content

Updated pyramid version #24

Updated pyramid version

Updated pyramid version #24

Workflow file for this run

name: Python linting
on: [push, pull_request]
jobs:
test:
name: Lint
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-python@v2
with:
python-version: '3.10'
- name: Install pre-commit
run: pip install pre-commit
- name: Run pre-commit hooks
run: pre-commit run --all-files --show-diff-on-failure