Skip to content

chore: update yaylib version to 1.5.0.b2 #14

chore: update yaylib version to 1.5.0.b2

chore: update yaylib version to 1.5.0.b2 #14

Workflow file for this run

name: Run unit tests
on:
push:
branches:
- develop
pull_request:
branches:
- develop
types:
- opened
- ready_for_review
- synchronize
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.10", "3.11", "3.12"]
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Install Poetry
run: pipx install poetry
- name: Setup Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Display Python version
run: python -c "import sys; print(sys.version)"
- name: Check poetry
run: |
poetry --version
poetry config --list
- name: Install dependencies
run: |
poetry install
./poetry_plugins.sh
- name: Run unit tests
run: |
make test