Skip to content

Use template file instead of development.py #85

Use template file instead of development.py

Use template file instead of development.py #85

Workflow file for this run

name: Acceptance
on:
pull_request:
branches:
- master
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Install poetry
run: pip install poetry
- name: Setup Python
id: setup-python
uses: actions/setup-python@v4
with:
python-version: '3.11'
cache: "poetry"
cache-dependency-path: "pyproject.toml"
- name: Install dependencies
run: |
poetry install
- name: Acceptance check
run: |
make init
make commit-acceptance