summaryrefslogtreecommitdiffstats
path: root/.github
diff options
context:
space:
mode:
authorSimon Willison2022-11-19 21:04:28 -0800
committerGitHub2022-11-19 22:04:28 -0700
commitb9bab4c54c2f7c8ea6aaa4a65e348b53349fc7a4 (patch)
tree1bad8e67b40f7341a55e9cca719aa6d7d512c08d /.github
parentfac144cee0772cbd197bba2f4e0f42cf1744d946 (diff)
downloadtakahe-b9bab4c54c2f7c8ea6aaa4a65e348b53349fc7a4.tar.gz
takahe-b9bab4c54c2f7c8ea6aaa4a65e348b53349fc7a4.tar.bz2
takahe-b9bab4c54c2f7c8ea6aaa4a65e348b53349fc7a4.zip
Configure GitHub Actions to run tests (#13)
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/test.yml35
1 files changed, 35 insertions, 0 deletions
diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml
new file mode 100644
index 0000000..dabe4cf
--- /dev/null
+++ b/.github/workflows/test.yml
@@ -0,0 +1,35 @@
+name: Test
+
+on: [push, pull_request]
+
+jobs:
+ test:
+ runs-on: ubuntu-latest
+ services:
+ postgres:
+ image: postgres:15
+ env:
+ POSTGRES_USER: postgres
+ POSTGRES_PASSWORD: postgres
+ POSTGRES_DB: postgres
+ ports: ['5432:5432']
+ 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
+ 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 pytest
+ env:
+ PGHOST: localhost
+ PGPORT: ${{ job.services.postgres.ports[5432] }}
+ PGNAME: postgres
+ PGUSER: postgres
+ PGPASSWORD: postgres
+ run: |
+ python -m pytest