Skip to content

feat(maps): add german states #8

feat(maps): add german states

feat(maps): add german states #8

Workflow file for this run

name: Run Tests
on:
push:
branches:
- main
pull_request:
branches:
- '**'
jobs:
test:
name: Run Unit Tests
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: "3.10"
- name: Install Poetry
run: |
curl -sSL https://install.python-poetry.org | python3 -
echo "$HOME/.local/bin" >> $GITHUB_PATH
- name: Install dependencies with Poetry
run: |
poetry install --no-interaction --no-ansi
- name: Run tests with Poetry
run: |
poetry run pytest --maxfail=1 --disable-warnings -q