Skip to content

jakob-keller is testing peprock πŸš€ #100

jakob-keller is testing peprock πŸš€

jakob-keller is testing peprock πŸš€ #100

Workflow file for this run

name: Test
run-name: ${{ github.actor }} is testing peprock πŸš€
on:
push:
pull_request:
jobs:
test:
name: Test
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [ "3.10", "3.11", "3.12", "3.13-dev" ]
env:
PYTHON: ${{ matrix.python-version }}
steps:
- run: echo "πŸŽ‰ The job was automatically triggered by a ${{ github.event_name }} event."
- run: echo "🐧 This job is now running on a ${{ runner.os }} server hosted by GitHub!"
- run: echo "πŸ”Ž The name of your branch is ${{ github.ref }} and your repository is ${{ github.repository }}."
- name: Check out repository code
uses: actions/checkout@v4
- name: Set up Poetry
run: pipx install poetry
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
cache: poetry
- name: Install dependencies
run: poetry install
- name: Check code formatting
run: poetry run black --check .
- name: Run linter
run: poetry run ruff check
- name: Run type checker
run: poetry run mypy
- name: Run unit tests
run: poetry run pytest --cov --cov-report=xml
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v3
with:
env_vars: PYTHON
files: ./coverage.xml
- run: echo "🍏 This job's status is ${{ job.status }}."