add github action for testing #3
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: | |
push: | |
branches: [ "*" ] | |
jobs: | |
create-project: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-python@v5 | |
- uses: fregante/setup-git-user@v2 | |
- name: install cookiecutter | |
run: sudo apt install cookiecutter | |
- name: create project with cookiecutter | |
run: cookiecutter --no-input --output-dir /tmp ./ project_slug=github_test_project |