Skip to content

⬆️ deps: Update dependencies (non-major) #174

⬆️ deps: Update dependencies (non-major)

⬆️ deps: Update dependencies (non-major) #174

Workflow file for this run

name: Unit Test
on: [push, pull_request, workflow_dispatch]
jobs:
unit-test:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12-dev"]
architecture: ["x64"]
name: Python ${{ matrix.python-version }} on ${{ matrix.architecture }} test
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Install poetry
run: pipx install poetry
- name: Install python
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
architecture: ${{ matrix.architecture }}
cache: "poetry"
- name: Install dependencies
if: steps.poetry-cache.outputs.cache-hit != 'true'
run: |
poetry install -E rst-parser
- name: unit test
run: |
poetry run pytest