summaryrefslogtreecommitdiffstats
path: root/.github
diff options
context:
space:
mode:
authorAndrew Godwin2022-11-20 11:54:23 -0700
committerAndrew Godwin2022-11-20 11:54:23 -0700
commit6121f75223ba273d8b6f572e0bdb9168ef3b4f0c (patch)
tree2578255792240b550c668b18b8d67772bf4273f0 /.github
parent9a2be5885b58d852458063a266e40f459e55f6fe (diff)
downloadtakahe-6121f75223ba273d8b6f572e0bdb9168ef3b4f0c.tar.gz
takahe-6121f75223ba273d8b6f572e0bdb9168ef3b4f0c.tar.bz2
takahe-6121f75223ba273d8b6f572e0bdb9168ef3b4f0c.zip
Fix up lint more, and bump down to 3.10 as min req
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/test.yml19
1 files changed, 3 insertions, 16 deletions
diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml
index 21bc192..41a0899 100644
--- a/.github/workflows/test.yml
+++ b/.github/workflows/test.yml
@@ -16,10 +16,10 @@ jobs:
options: --health-cmd pg_isready --health-interval 10s --health-timeout 5s --health-retries 5
steps:
- uses: actions/checkout@v3
- - name: Set up Python 3.11
+ - name: Set up Python 3.10
uses: actions/setup-python@v4
with:
- python-version: "3.11"
+ python-version: "3.10"
cache: pip
- name: Install dependencies
run: |
@@ -33,19 +33,6 @@ 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
+ pre-commit run -a --show-diff-on-failure