Skip to content

Commit

Permalink
Ignore cookiecutter hooks for CI
Browse files Browse the repository at this point in the history
  • Loading branch information
samamorgan committed Oct 18, 2022
1 parent 98a4e6f commit a404676
Show file tree
Hide file tree
Showing 3 changed files with 88 additions and 51 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/project_ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ jobs:
# Instantiate the project
- name: Instantiate project using the values in cookiecutter.json
run: poetry run cookiecutter . --no-input
run: poetry run cookiecutter . --no-input --accept-hooks no

# Configure the project environment
- uses: actions/setup-node@v3
Expand All @@ -59,7 +59,7 @@ jobs:
cache: "npm"
cache-dependency-path: "**/package-lock.json"

- name: Setup Node
- name: Install and build Node package
working-directory: ./sampleapp
run: |
npm install
Expand Down
123 changes: 80 additions & 43 deletions poetry.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

12 changes: 6 additions & 6 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,16 +6,16 @@ authors = ["Ben Beecher <[email protected]>"]

[tool.poetry.dependencies]
python = "^3.9"
cookiecutter = "^1.7.3"
isort = "^5.10.1"
Sphinx = "^5.1.1"
furo = "^2022.9.15"

[tool.poetry.dev-dependencies]
cookiecutter = "^2.1.1"

[tool.poetry.group.dev.dependencies]
isort = "^5.10.1"
retrocookie = "^0.4.2"

[tool.poetry.group.docs.dependencies]
Sphinx = "^5.1.1"
furo = "^2022.9.29"

[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"

0 comments on commit a404676

Please sign in to comment.