Skip to content

fix: testing workdir change to understand bug cause #6

fix: testing workdir change to understand bug cause

fix: testing workdir change to understand bug cause #6

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@v2
- name: Install dependencies
run: |
pip install cookiecutter poetry
- name: Create and move to test repo
run: |
cookiecutter --no-input .
cd project_name
- name: Run test repo shortcuts
run: |
make poetry_env
make env
make major
make minor
make patch
make src_tests
make src_tests_cov