Skip to content

Commit

Permalink
CI: Test project
Browse files Browse the repository at this point in the history
  • Loading branch information
alexdewar committed May 28, 2024
1 parent 9c1b0c9 commit eb4dbb2
Showing 1 changed file with 9 additions and 1 deletion.
10 changes: 9 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,8 +33,16 @@ jobs:
with:
poetry-version: 1.2.2

- name: Install dependencies
- name: Install cookiecutter
run: pip install cookiecutter

- name: Create project from template
run: yes "" | cookiecutter .

- name: Install project dependencies
working-directory: my_project
run: poetry install

- name: Run tests
working-directory: my_project
run: poetry run pytest

0 comments on commit eb4dbb2

Please sign in to comment.