Skip to content

fixup! fixup! feat: Support extendable backup flag. #26

fixup! fixup! feat: Support extendable backup flag.

fixup! fixup! feat: Support extendable backup flag. #26

Workflow file for this run

name: test
on: [push, pull_request]
jobs:
test:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ ubuntu-latest ]
python-version: ['3.7.13', '3.8.12', '3.9.12', '3.10.4']
steps:
- uses: actions/checkout@v4
- name: Install poetry
run: pipx install poetry
- name: Setup python for ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: poetry install
- name: Run tests for Python-${{ matrix.python-version }} with ${{ matrix.os }}
run: poetry run pytest