summaryrefslogtreecommitdiffstats
path: root/.github/workflows/test.yml
diff options
context:
space:
mode:
Diffstat (limited to '.github/workflows/test.yml')
-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