Sets classes refs to 8294b59c42554ea78afc5cfd8230162f47018a03 #147
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: Check | |
# yamllint disable-line rule:truthy | |
on: | |
pull_request: | |
push: | |
jobs: | |
Pre-commit: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/cache@v1 | |
with: | |
path: ~/.cache/pre-commit | |
key: pre-commit|${{ hashFiles('.pre-commit-config.yaml') }} | |
- uses: actions/setup-python@v2 | |
with: | |
python-version: 3.9 | |
- uses: pre-commit/action@v2.0.3 |