2022-04-26 15:39:20 +00:00
|
|
|
name: "Test suite"
|
|
|
|
|
|
|
|
on:
|
|
|
|
push:
|
|
|
|
branches:
|
|
|
|
- main
|
|
|
|
- master
|
|
|
|
pull_request:
|
|
|
|
branches:
|
|
|
|
- main
|
|
|
|
- master
|
|
|
|
workflow_call:
|
|
|
|
|
|
|
|
|
|
|
|
defaults:
|
|
|
|
run:
|
|
|
|
shell: bash
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
pytest:
|
|
|
|
name: "🧪 Test package using pytest"
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
if: ${{ github.event_name == 'push' || github.event_name == 'pull_request' || github.event_name == 'workflow_dispatch' }}
|
|
|
|
|
|
|
|
# If you need a database to perform your tests
|
|
|
|
# services:
|
|
|
|
# postgres:
|
|
|
|
# image: postgres
|
|
|
|
# env:
|
|
|
|
# POSTGRES_USER: username
|
|
|
|
# POSTGRES_PASSWORD: password
|
|
|
|
# POSTGRES_DB: db
|
|
|
|
# options: >-
|
|
|
|
# --health-cmd pg_isready
|
|
|
|
# --health-interval 10s
|
|
|
|
# --health-timeout 5s
|
|
|
|
# --health-retries 5
|
|
|
|
# ports:
|
|
|
|
# - "5432:5432"
|
|
|
|
|
|
|
|
steps:
|
|
|
|
- name: "⬇️ Checkout repository"
|
|
|
|
uses: actions/checkout@v3
|
|
|
|
|
|
|
|
- name: "🔨 Setup Python"
|
|
|
|
uses: actions/setup-python@v3
|
|
|
|
|
|
|
|
- name: "🔨 Setup Poetry"
|
2022-08-23 08:43:05 +00:00
|
|
|
uses: abatilo/actions-poetry@v2.1.6
|
2022-04-26 15:39:20 +00:00
|
|
|
|
|
|
|
- name: "🔨 Setup Poetry Python environment"
|
|
|
|
id: pyenv
|
2022-04-26 15:49:03 +00:00
|
|
|
uses: Steffo99/actions-poetry-deps@v0.2.4
|
2022-04-26 15:39:20 +00:00
|
|
|
|
|
|
|
- name: "🧪 Run tests"
|
|
|
|
run: |
|
|
|
|
source ${{ steps.pyenv.outputs.pyenv }}/activate
|
|
|
|
pytest --verbose --cov=. --cov-report=html
|
|
|
|
|
|
|
|
- name: "⬆️ Upload coverage"
|
|
|
|
uses: actions/upload-artifact@v3
|
|
|
|
with:
|
2022-04-26 16:15:39 +00:00
|
|
|
name: "Coverage"
|
2022-04-26 15:39:20 +00:00
|
|
|
path: htmlcov
|