Skip to content

[pre-commit.ci] pre-commit autoupdate #120

[pre-commit.ci] pre-commit autoupdate

[pre-commit.ci] pre-commit autoupdate #120

Workflow file for this run

name: PyTest
on: [push]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.9.x"]
steps:
- uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v3
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
pip install poetry
poetry install
poetry run python-vendorize
- name: Test with pytest
run: |
poetry run pytest