fix(wcs): Remove errant .appends #182
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
# Linting workflow for github actions that runs the pre-commit hooks on all | |
# files in the repository. | |
name: Lint | |
# Run this workflow on every push to the repository and on manual trigger. | |
on: | |
push: | |
workflow_dispatch: | |
jobs: | |
lint: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v2 | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-python@v4 | |
- name: Run image | |
uses: abatilo/actions-poetry@v2 | |
- name: Install linting (dev) dependencies | |
run: poetry install --only=dev | |
- name: Run pre-commit hooks | |
run: SKIP=no-commit-to-branch poetry run pre-commit run --all-files |