Skip to content

Initial build-out.

Initial build-out. #3

Workflow file for this run

name: CI
on:
push:
branches:
- main
- develop
- 'release/**'
- 'hotfix/**'
- 'support/**'
pull_request:
branches:
- main
- develop
jobs:
build-and-test:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, windows-latest, macos-latest]
python-version: ["3.8", "3.9", "3.10", "3.11"]
steps:
- uses: actions/checkout@v3
- name: Install poetry
run: pipx install poetry
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
cache: 'poetry'
- name: Install dependencies.
run: poetry install
- name: Run tests.
run: poetry run pytest