Python package namespace support #10
Workflow file for this run
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: Tests | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
jobs: | |
self-test: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/setup-python@v4 | |
with: | |
python-version: "3.x" | |
- name: install cookiecutter | |
run: python -m pip install cookiecutter | |
- name: run template (default) | |
run: | | |
cookiecutter --no-input -o /tmp . | |
[[ -d /tmp/python-project/python_project ]] || { >&2 echo "not generated?"; exit 1; } | |
cd /tmp/python-project | |
make dev | |
make reformat | |
make lint | |
make test | |
make package | |
make doc | |
- name: run template (namespace) | |
run: | | |
cookiecutter --no-input -o /tmp . project_namespace_import=tob.r_and_e | |
[[ -d /tmp/tob-r-and-e-python-project/python_project ]] || { >&2 echo "not generated?"; exit 1; } | |
cd /tmp/tob-r-and-e-python-project | |
make dev | |
make reformat | |
make lint | |
make test | |
make package | |
make doc | |
- name: run template (namespace, short slug) | |
run: | | |
cookiecutter --no-input -o /tmp . project_namespace_import=tob.r_and_e "project_name=Bit Trails" project_slug=bit-trails | |
[[ -d /tmp/bit-trails/tob/r_and_e/bit_trails ]] || { >&2 echo "not generated?"; exit 1; } | |
cd /tmp/bit-trails | |
make dev | |
make reformat | |
make lint | |
make test | |
make package | |
make doc |