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 ee671c8 commit b432a7e
Showing 1 changed file with 10 additions and 1 deletion.
11 changes: 10 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,8 +37,17 @@ jobs:
with:
poetry-version: 1.2.2

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

- name: Create project from template
# Choose default options
run: cookiecutter --no-input .

- 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 b432a7e

Please sign in to comment.