Update README.md #45
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: test | |
on: | |
workflow_dispatch: | |
push: | |
branches: [ "*" ] | |
env: | |
artifact_name: test_project | |
jobs: | |
create-test-project: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: install dependencies | |
run: | | |
sudo apt install cookiecutter pre-commit npm | |
pip install pipenv | |
npm install -g pnpm | |
- name: create project with cookiecutter | |
run: | | |
git config --global init.defaultBranch main | |
git config --global user.email "[email protected]" | |
git config --global user.name "GitHub Actions" | |
cookiecutter --no-input --output-dir /tmp ./ project_slug=github_test_project | |
- id: upload-artifacts | |
uses: actions/upload-artifact@v4 | |
with: | |
name: ${{ env.artifact_name }} | |
path: | | |
/tmp/github_test_project | |
!/tmp/github_test_project/**/node_modules | |
retention-days: 1 | |
test-test-project: | |
runs-on: ubuntu-latest | |
needs: [ create-test-project ] | |
services: | |
db: | |
image: docker.io/postgres | |
ports: | |
- 5432:5432 | |
env: | |
POSTGRES_USER: github_test_project | |
POSTGRES_PASSWORD: github_test_project | |
POSTGRES_DB: github_test_project | |
steps: | |
- name: install system dependencies | |
run: | | |
sudo apt install npm | |
pip install pipenv | |
npm install -g pnpm | |
- uses: actions/download-artifact@v4 | |
with: | |
name: ${{ env.artifact_name }} | |
- name: install project dependencies | |
run: pipenv sync --dev | |
- name: manage.py --help | |
run: | | |
chmod +x ./src/manage.py | |
pipenv run ./src/manage.py --help | |
- name: pytest | |
run: pipenv run pytest |