Skip to content

test: reintroducing testing make commands after deleting pyproject fi… #15

test: reintroducing testing make commands after deleting pyproject fi…

test: reintroducing testing make commands after deleting pyproject fi… #15

Workflow file for this run

name: Build test
on:
push:
branches:
- main
jobs:
test_cookiecutter:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v3
- name: Set up python==3.10
uses: actions/setup-python@v1
with:
python-version: '3.10'
architecture: x64
- name: Install dependencies
run: |
pip install --upgrade pip
pip install cookiecutter
pip install poetry
- name: Create test repo
run: |
cookiecutter --no-input .
- name: Run test repo shortcuts
run: |
cd project-name
make poetry_env
make env
make major
make minor
make patch
make src_tests
make src_tests_cov