Skip to content

Commit

Permalink
feat(gha): ensure minimal CI is enforced
Browse files Browse the repository at this point in the history
  • Loading branch information
gforcada committed Feb 11, 2025
1 parent e688eaa commit 30d7c97
Showing 1 changed file with 28 additions and 0 deletions.
28 changes: 28 additions & 0 deletions .github/workflows/local.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
name: QA
on: [push]

jobs:
test:
name: QA report
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.13"]
steps:
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Cache packages
uses: actions/cache@v4
with:
path: ~/.cache/pip
key: ${{ runner.os }}-pip-${{ matrix.python-version }}-${{ hashFiles('tox.ini') }}
restore-keys: |
${{ runner.os }}-pip-${{ matrix.python-version }}-
${{ runner.os }}-pip-
- name: Install dependencies
run: python -m pip install tox
- name: Run QA tools
run: tox -e lint

0 comments on commit 30d7c97

Please sign in to comment.