Skip to content

Commit

Permalink
add github action for testing
Browse files Browse the repository at this point in the history
  • Loading branch information
lilioid committed Feb 12, 2024
1 parent fd5b746 commit aa98af9
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
@@ -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

0 comments on commit aa98af9

Please sign in to comment.