Skip to content

add github action for testing #12

add github action for testing

add github action for testing #12

Workflow file for this run

name: test
on:
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: ${{ vars.artifact_name }}
path: /tmp/github_test_project
retention-days: 1
run-test-project:
runs-on: ubuntu-latest
needs: [ create-test-project ]
steps:
- uses: actions/download-artifact@v4
with:
name: ${{ vars.artifact_name }}