Skip to content

initial commit

initial commit #1

Workflow file for this run

name: CI
on:
push:
paths:
- 'pycam/**'
- 'app.py'
- 'tests/**'
- '.github/**'
jobs:
ci:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v4
with:
python-version: '3.11'
- uses: snok/install-poetry@v1
- run: poetry install --no-interaction
- run: poetry run pytest