Skip to content

Commit

Permalink
ci: bumped github actions deps
Browse files Browse the repository at this point in the history
Signed-off-by: David Calvert <david@0xdc.me>
  • Loading branch information
dotdc committed Dec 4, 2023
1 parent 54ab4b7 commit 7ef2865
Showing 1 changed file with 15 additions and 9 deletions.
24 changes: 15 additions & 9 deletions .github/workflows/pre-commit-checks.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
name: pre-commit-checks

# Doc: https://docs.github.com/en/actions/using-workflows/workflow-syntax-for-github-actions

on:
push:
branches: [ master ]
Expand All @@ -10,14 +12,18 @@ jobs:
pre-commit-checks:
runs-on: ubuntu-latest
steps:
# Dependencies
- uses: actions/checkout@v2
- uses: actions/setup-python@v2
# Doc: https://github.com/marketplace/actions/checkout
- name: Checkout ${{ github.repository }}
uses: actions/checkout@v4

# Doc: https://github.com/marketplace/actions/setup-python
- name: Setup Python
uses: actions/setup-python@v4

# Install pre-commit
- name: Install pre-commit
run: pip install pre-commit
# Install pre-commit
- name: Install pre-commit
run: pip install pre-commit

# Run pre-commit checks
- name: Run pre-commit checks
run: pre-commit run --all-files
# Run pre-commit checks
- name: Run pre-commit checks
run: pre-commit run --all-files

0 comments on commit 7ef2865

Please sign in to comment.