chore: update cookiecutter checkout to use branch name #1261
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: CI | |
env: | |
BRANCH_NAME: ${{ github.head_ref || github.ref_name }} | |
on: | |
push: | |
branches: master | |
pull_request: | |
branches: master | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
defaults: | |
run: | |
working-directory: ./piedpiper-web | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up Python 3.12 | |
uses: actions/setup-python@v5 | |
with: | |
python-version: '3.12' | |
- name: Scaffold Project | |
working-directory: ./ | |
run: | | |
python -m pip install --upgrade pip | |
pip install --user cookiecutter | |
cookiecutter gh:agconti/cookiecutter-django-rest --checkout $BRANCH_NAME --no-input | |
- name: Build image | |
run: docker compose build web | |
- name: Run Web tests | |
run: docker run --rm app bash -c "flake8 . && | |
python3 wait_for_postgres.py && | |
python3 -Wall ./manage.py check --deploy && | |
python3 -m pytest" |