Skip to content

Update Byron url

Update Byron url #128

Workflow file for this run

name: Run Python tests
on: [push]
jobs:
build:
name: Run tests
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.10", "3.11", "3.12"]
steps:
# check-out repo and set-up python
- uses: szenius/set-timezone@v1.2
with:
timezoneLinux: "Europe/Berlin"
- name: Check out repository
uses: actions/checkout@v3
- name: Set up python ${{ matrix.python-version }}
id: setup-python
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
# install & configure poetry
- name: Poetry & environment setup
uses: snok/install-poetry@v1.3.4
with:
virtualenvs-create: true
virtualenvs-in-project: true
- run: poetry install --no-interaction --all-extras
- run: poetry shell
- run: pip install pytest-md pytest-emoji
# test!
- name: Test Python ${{ matrix.python-version }}
uses: pavelzw/pytest-action@v2.2.0
with:
verbose: true
emoji: true
job-summary: true
click-to-expand: true
report-title: 'Byron Test Report'