Skip to content

Merge pull request #184 from JerBouma/dependabot/pip/tornado-6.5.1 #549

Merge pull request #184 from JerBouma/dependabot/pip/tornado-6.5.1

Merge pull request #184 from JerBouma/dependabot/pip/tornado-6.5.1 #549

Workflow file for this run

name: Run Unit Tests
on:
pull_request:
types: [opened, synchronize, edited]
push:
branches:
- 'main'
- 'develop'
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.12"]
steps:
- uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Install Poetry
uses: snok/install-poetry@v1
- name: Install dependencies
run: |
poetry install
- name: Test with pytest
run: |
poetry run pytest