diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml new file mode 100644 index 0000000..7b63449 --- /dev/null +++ b/.github/workflows/test.yml @@ -0,0 +1,18 @@ +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: | + git config --global user.email + cookiecutter --no-input --output-dir /tmp ./ project_slug=github_test_project