a_size, b_diameter, and i_diameter TBs + others #23
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Pipeline | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
branches: | |
- main | |
jobs: | |
run: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@master | |
- name: Set up Python | |
uses: actions/setup-python@master | |
with: | |
python-version: 3.10.x | |
- name: Install dependencies | |
run: | | |
curl -sSL https://install.python-poetry.org | python3 - | |
poetry config virtualenvs.in-project true | |
poetry run pip install --upgrade setuptools==57.5.0 | |
poetry install | |
- name: Pre-commit | |
run: | | |
poetry run pre-commit run --all-files | |
- name: Pytest | |
run: | | |
poetry run pytest -v |