Skip to content

refactor: use pathlib as_posix() #143

refactor: use pathlib as_posix()

refactor: use pathlib as_posix() #143

Workflow file for this run

name: test
on: [pull_request, push]
jobs:
test:
runs-on: ubuntu-20.04
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: "3.9"
- name: Install Poetry
run: |
curl -sSL https://install.python-poetry.org | python3 -
poetry --version
- name: Install dependencies
run: poetry install --no-interaction
- name: Run tests
run: poetry run pytest