Skip to content

Merge pull request #3 from carolinedlu/main #24

Merge pull request #3 from carolinedlu/main

Merge pull request #3 from carolinedlu/main #24

Workflow file for this run

name: Run Tests
on:
push:
branches:
- main
pull_request:
jobs:
build:
runs-on: ubuntu-latest
strategy:
# You can use PyPy versions in python-version.
# For example, pypy-2.7 and pypy-3.8
matrix:
python-version: ["3.9", "3.8"]
poetry-version: [1.5.1]
steps:
- uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Run image
uses: abatilo/[email protected]
with:
poetry-version: ${{ matrix.poetry-version }}
- name: Install deps
run: |
poetry install
- name: Run testing
run: poetry run pytest tests