Skip to content

Merge pull request #2 from dev2049/publish_2 #3

Merge pull request #2 from dev2049/publish_2

Merge pull request #2 from dev2049/publish_2 #3

Workflow file for this run

name: test
on:
push:
branches: [main]
pull_request:
workflow_dispatch:
env:
POETRY_VERSION: "1.4.2"
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
python-version:
- "3.8"
- "3.9"
- "3.10"
- "3.11"
name: Python ${{ matrix.python-version }}
steps:
- uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
uses: "./.github/actions/poetry_setup"
with:
python-version: ${{ matrix.python-version }}
poetry-version: "1.4.2"
install-command: |
echo "Running tests, installing dependencies with poetry..."
poetry install
- name: Run tests
run: |
make test
shell: bash