Skip to content

Merge pull request #37 from glaciation-heu/HHT-1417-integration-testi… #361

Merge pull request #37 from glaciation-heu/HHT-1417-integration-testi…

Merge pull request #37 from glaciation-heu/HHT-1417-integration-testi… #361

name: Test and build
on:
push:
branches:
- '**'
tags:
- '**'
paths-ignore:
- 'releases/**'
pull_request:
branches:
- '**'
workflow_dispatch:
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.11"]
steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Install poetry
run: pip install poetry
- name: Install dependencies
run: |
poetry config virtualenvs.in-project true
poetry install --no-root --with dev,test
- name: Run style checks
run: |
poetry run mypy .
poetry run isort . --check --diff
poetry run flake8 .
poetry run black . --check --diff
- name: Run tests
run: poetry run pytest --vcr-record=none
build:
needs: [test]
permissions:
contents: write
packages: write
secrets: inherit
uses: ./.github/workflows/build_web.yaml