Skip to content

Commit

Permalink
Adds Check workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
kenorb committed Feb 25, 2022
1 parent aff9721 commit 7f2a936
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions .github/workflows/check.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
---
name: Check

# yamllint disable-line rule:truthy
on:
pull_request:
push:

jobs:
Pre-commit:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- 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.10
- uses: pre-commit/[email protected]

0 comments on commit 7f2a936

Please sign in to comment.