This repository has been archived by the owner on Jul 22, 2024. It is now read-only.
build(deps): bump python-slugify from 6.1.2 to 8.0.4 #268
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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] |