Skip to content

Commit

Permalink
ci: update versions, checkout recursive (#78)
Browse files Browse the repository at this point in the history
* ci: fix checkout options

* update libs

* update python

* update libs
  • Loading branch information
jnicoulaud-ledger authored Oct 14, 2024
1 parent e373917 commit ab265a2
Show file tree
Hide file tree
Showing 6 changed files with 40 additions and 29 deletions.
2 changes: 1 addition & 1 deletion .github/actions/pdm/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ inputs:
python-version:
description: 'Python version'
required: true
default: '3.12.3'
default: '3.12'

runs:
using: "composite"
Expand Down
3 changes: 2 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,8 @@ jobs:
timeout-minutes: 10
uses: actions/checkout@v4
with:
submodules: "true"
fetch-depth: 0
submodules: "recursive"

- name: Pull request | Add labels
timeout-minutes: 30
Expand Down
3 changes: 3 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,9 @@ jobs:
- name: Checkout
timeout-minutes: 10
uses: actions/checkout@v4
with:
fetch-depth: 0
submodules: "recursive"

- name: Setup python / PDM
timeout-minutes: 10
Expand Down
3 changes: 3 additions & 0 deletions .github/workflows/update_dependencies.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,9 @@ jobs:
- name: Checkout
timeout-minutes: 10
uses: actions/checkout@v4
with:
fetch-depth: 0
submodules: "recursive"

- name: Setup python / PDM
timeout-minutes: 10
Expand Down
56 changes: 30 additions & 26 deletions pdm.lock

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

2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ dev = [
"pytest-unordered>=0.6.1",
"pytest-raises>=0.11",
"prettydiff[terminal]>=0.1.0",
"sphinx>=7.3.7,<8.1.0", # pinned because sphinxcontrib-mermaid is not compatible
"sphinx>=8.1.0",
"sphinxcontrib-apidoc>=0.5.0",
"sphinxcontrib-typer>=0.5.0",
"sphinxcontrib-mermaid>=0.9.2",
Expand Down

0 comments on commit ab265a2

Please sign in to comment.