2021-03-21 10:16:51 +01:00
|
|
|
# This workflow will install Python dependencies, run tests and lint with a single version of Python
|
|
|
|
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-python-with-github-actions
|
|
|
|
|
|
|
|
name: Build and Test
|
|
|
|
|
|
|
|
on: ['push', 'pull_request']
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
build:
|
|
|
|
|
2022-10-03 18:57:56 +02:00
|
|
|
runs-on: ubuntu-22.04
|
2021-03-21 10:16:51 +01:00
|
|
|
|
|
|
|
services:
|
|
|
|
database:
|
2023-05-30 10:01:58 +02:00
|
|
|
image: postgres:15-alpine
|
2021-03-21 10:16:51 +01:00
|
|
|
env:
|
|
|
|
# password for postgres user in the Docker container
|
|
|
|
POSTGRES_PASSWORD: postgres
|
|
|
|
# default database to create
|
|
|
|
POSTGRES_DB: dspacestatistics
|
|
|
|
options: >-
|
|
|
|
--health-cmd pg_isready
|
|
|
|
--health-interval 10s
|
|
|
|
--health-timeout 5s
|
|
|
|
--health-retries 5
|
|
|
|
ports:
|
|
|
|
- 5432:5432
|
|
|
|
|
|
|
|
steps:
|
2023-10-19 13:02:08 +02:00
|
|
|
- uses: actions/checkout@v4
|
2023-05-30 08:39:00 +02:00
|
|
|
- name: Install poetry
|
|
|
|
run: pipx install poetry
|
2023-12-09 11:53:11 +01:00
|
|
|
- uses: actions/setup-python@v5
|
2021-03-21 10:16:51 +01:00
|
|
|
with:
|
2023-12-09 11:53:11 +01:00
|
|
|
python-version: '3.11'
|
2023-05-30 08:39:00 +02:00
|
|
|
cache: 'poetry'
|
|
|
|
- run: poetry install
|
2021-03-21 10:16:51 +01:00
|
|
|
- name: Lint with flake8
|
|
|
|
run: |
|
|
|
|
# stop the build if there are Python syntax errors or undefined names
|
2023-05-30 08:39:00 +02:00
|
|
|
poetry run flake8 . --count --select=E9,F63,F7,F82 --show-source --statistics
|
2021-03-21 10:16:51 +01:00
|
|
|
# exit-zero treats all errors as warnings. The GitHub editor is 127 chars wide
|
2023-05-30 08:39:00 +02:00
|
|
|
poetry run flake8 . --count --exit-zero --max-complexity=10 --max-line-length=127 --statistics
|
2021-03-21 10:16:51 +01:00
|
|
|
- name: Set up PostgreSQL
|
|
|
|
run: |
|
|
|
|
pg_isready -U postgres -d dspacestatistics
|
|
|
|
createuser -U postgres dspacestatistics
|
|
|
|
psql -U postgres -c "ALTER USER dspacestatistics WITH PASSWORD 'dspacestatistics'"
|
|
|
|
psql -U postgres -d dspacestatistics < tests/dspacestatistics.sql
|
|
|
|
env:
|
|
|
|
PGHOST: localhost
|
|
|
|
PGPASSWORD: postgres
|
|
|
|
- name: Test with pytest
|
|
|
|
run: |
|
2023-05-30 08:39:00 +02:00
|
|
|
poetry run pytest
|
2021-03-21 10:16:51 +01:00
|
|
|
env:
|
|
|
|
PGHOST: localhost
|
|
|
|
PGPASSWORD: dspacestatistics
|