Skip to content

Update for BuildingSync v2.5 #41

Update for BuildingSync v2.5

Update for BuildingSync v2.5 #41

Workflow file for this run

name: CI
on:
pull_request:
jobs:
tests:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: 3.10.9
- name: Install poetry
uses: abatilo/[email protected]
with:
poetry-version: 1.3.1
- name: Print Environment
run: |
poetry install
poetry --version
- name: Test
run: poetry run pytest
- name: Install and Run Pre-Commit
run: |
poetry run pre-commit install
poetry run pre-commit run --all-files