Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,15 +18,15 @@ inputs:
The poetry command to run when checking the lock file (e.g. `check`).
This command was changed in poetry 1.6 (default used by this action).
To support older versions of poetry, provide a value for this input.
default: check
default: 'check --ansi'
required: false
poetry-install:
description: Whether to run `poetry install`.
required: false
default: true
poetry-install-args:
description: Additional args to pass to `poetry install`.
default: '-v --sync'
default: '--ansi -v --sync'
required: false
poetry-install-cmd:
description: |
Expand Down
17 changes: 13 additions & 4 deletions poetry.lock

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

12 changes: 3 additions & 9 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,9 +1,4 @@
[tool.poetry]
name = "action-setup-python"
version = "0.0.0"
authors = ["Kyle Finley <kyle@finley.sh>"]
description = "A composite action for setting up python."
license = "Apache-2.0"
package-mode = false

[tool.poetry.dependencies]
Expand All @@ -15,12 +10,11 @@ pre-commit = "^4.1.0"
[tool.tomlsort]
all = true
in_place = true
sort_first = ["tool", "tool.poetry"]
sort_first = ["project", "tool", "tool.poetry"]
spaces_before_inline_comment = 2
trailing_comma_inline_array = true
overrides."tool.poetry".first = ["name", "version"]
overrides."tool.poetry.dependencies".first = ["python"]
overrides.project.first = ["name", "version"]

[build-system]
build-backend = "poetry.core.masonry.api"
requires = ["poetry-core>=2.1.1"]
requires = ["poetry-core>=2"]
Loading