Skip to content
This repository has been archived by the owner on Jul 22, 2024. It is now read-only.

build(deps-dev): bump pytest from 7.3.1 to 8.2.2 #299

build(deps-dev): bump pytest from 7.3.1 to 8.2.2

build(deps-dev): bump pytest from 7.3.1 to 8.2.2 #299

Workflow file for this run

name: CI
on: [push]
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Python 3.11
uses: actions/setup-python@v5
with:
python-version: "3.11"
- name: install poetry
run: |
python -m pip install -U pip
python -m pip install poetry
- name: install
run: make install
- name: lint
run: make lint
- name: mypy
run: make mypy
tests:
runs-on: ubuntu-latest
strategy:
matrix:
python-version:
- "3.8"
- "3.9"
- "3.10"
- "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: |
python -m pip install -U pip
python -m pip install poetry
- name: install
run: make install
- name: install german locale for tests
run: |
sudo locale-gen de_DE
sudo locale-gen de_DE.UTF-8
- name: test
run: make test
- name: Upload coverage
uses: codecov/[email protected]