summaryrefslogtreecommitdiffstats
path: root/.github
diff options
context:
space:
mode:
authorAndrew Godwin2022-11-20 11:45:08 -0700
committerAndrew Godwin2022-11-20 11:45:08 -0700
commit8f6db1a1e3be0aea423c67e7fa6568eca64a25e3 (patch)
treea7afc6baa4e4d4c9f7206414ff95a62fc9cadeb2 /.github
parent7a4f9cf29327803597cd39a46df159df4fbabe6c (diff)
downloadtakahe-8f6db1a1e3be0aea423c67e7fa6568eca64a25e3.tar.gz
takahe-8f6db1a1e3be0aea423c67e7fa6568eca64a25e3.tar.bz2
takahe-8f6db1a1e3be0aea423c67e7fa6568eca64a25e3.zip
Add pre-commit linter to actions
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/test.yml18
1 files changed, 17 insertions, 1 deletions
diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml
index dabe4cf..21bc192 100644
--- a/.github/workflows/test.yml
+++ b/.github/workflows/test.yml
@@ -12,7 +12,7 @@ jobs:
POSTGRES_USER: postgres
POSTGRES_PASSWORD: postgres
POSTGRES_DB: postgres
- ports: ['5432:5432']
+ ports: ["5432:5432"]
options: --health-cmd pg_isready --health-interval 10s --health-timeout 5s --health-retries 5
steps:
- uses: actions/checkout@v3
@@ -33,3 +33,19 @@ jobs:
PGPASSWORD: postgres
run: |
python -m pytest
+
+ lint:
+ runs-on: ubuntu-latest
+ steps:
+ - uses: actions/checkout@v3
+ - name: Set up Python 3.11
+ uses: actions/setup-python@v4
+ with:
+ python-version: "3.11"
+ cache: pip
+ - name: Install dependencies
+ run: |
+ python -m pip install -r requirements-dev.txt
+ - name: Run pre-commit
+ run: |
+ pre-commit run -a