Skip to content

Commit

Permalink
Fix publish workflow to pull correctly
Browse files Browse the repository at this point in the history
  • Loading branch information
tekktrik committed Dec 29, 2023
1 parent 00c1faf commit 86d913f
Showing 1 changed file with 23 additions and 0 deletions.
23 changes: 23 additions & 0 deletions .github/workflows/push.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
# SPDX-FileCopyrightText: 2023 Alec Delaney
# SPDX-License-Identifier: MIT

on:
push

jobs:
run-pre-commit:
runs-on: ubuntu-latest
steps:
- name: Checkout the repository
uses: actions/checkout@v4
with:
submodules: true
- name: Install Python 3.X
uses: actions/setup-python@v5
- name: Install dependencies
run: |
pip install -r requirements.txt
pip install -r requirements-dev.txt
- name: Run pre-commit
run: |
pre-commit run --all-files

0 comments on commit 86d913f

Please sign in to comment.