fix: testing workdir change to understand bug cause #6
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |