fix: poetry install added #2
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 cookiecutter | |
run: | | |
pip install cookiecutter poetry | |
- name: Create template repo | |
run: | | |
cookiecutter --no-input . | |
- name: Test repo shortcuts | |
run: | | |
cd project_name | |
make poetry | |
make env | |
make major | |
make minor | |
make patch | |
make test | |
make test_with_cov |