Skip to content

Commit

Permalink
ci: Update workflow for pre-commit
Browse files Browse the repository at this point in the history
  • Loading branch information
titom73 committed Aug 29, 2023
1 parent 46fcb4f commit a589d40
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions .github/workflows/pr-management.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,20 @@ on:
types: [assigned, opened, synchronize, reopened]

jobs:

pre-commit:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v4
- name: install dev requirements
run: pip install .[dev]
- uses: pre-commit/action@v3.0.0

compiling:
name: Run installation process and code compilation supported Python versions
runs-on: ubuntu-latest
needs: [pre-commit]
strategy:
matrix:
python-version: ["3.8", "3.9", "3.10"]
Expand Down

0 comments on commit a589d40

Please sign in to comment.