fix: conftest added to stop warning message in coverage test #19
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@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-title | |
make poetry_env | |
make env | |
make major | |
make minor | |
make patch | |
make src_tests | |
make src_tests_cov |