Skip to content

Merge branch 'master' of github.com:artemis-beta/py-raildriver #1

Merge branch 'master' of github.com:artemis-beta/py-raildriver

Merge branch 'master' of github.com:artemis-beta/py-raildriver #1

Workflow file for this run

name: py-raildriver
on: [push]
jobs:
unit_tests:
name: Unit Tests (${{ matrix.os }} Python${{ matrix.python-version }})
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest]
python-version: [ '3.10', '3.11', '3.12' ]
steps:
- uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
architecture: x64
- name: Install Poetry
run: python -m pip install poetry
- name: Run Unit Tests
run: |
poetry install
poetry run pytest tests