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
18 changes: 8 additions & 10 deletions .github/workflows/build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -22,14 +22,13 @@ jobs:

- name: Cache Dependencies
id: cache-deps
uses: threeal/cache-action@v0.2.1
uses: actions/cache@v4.2.3
with:
key: poetry-${{ runner.os }}
version: ${{ hashFiles('pyproject.toml') }}
files: .venv
key: poetry-${{ runner.os }}-${{ hashFiles('pyproject.toml') }}
path: .venv

- name: Install Dependencies
if: steps.cache-deps.outputs.restored == 'false'
if: steps.cache-deps.outputs.cache-hit != 'true'
run: poetry install --with dev

- name: Build Package
Expand Down Expand Up @@ -57,14 +56,13 @@ jobs:

- name: Cache Dependencies
id: cache-deps
uses: threeal/cache-action@v0.2.1
uses: actions/cache@v4.2.3
with:
key: poetry-${{ runner.os }}
version: ${{ hashFiles('pyproject.toml') }}
files: .venv
key: poetry-${{ runner.os }}-${{ hashFiles('pyproject.toml') }}
path: .venv

- name: Install Dependencies
if: steps.cache-deps.outputs.restored == 'false'
if: steps.cache-deps.outputs.cache-hit != 'true'
run: poetry install --with dev

- name: Generate Documentation
Expand Down
9 changes: 4 additions & 5 deletions .github/workflows/deploy.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -30,14 +30,13 @@ jobs:

- name: Cache Dependencies
id: cache-deps
uses: threeal/cache-action@v0.2.1
uses: actions/cache@v4.2.3
with:
key: poetry-${{ runner.os }}
version: ${{ hashFiles('pyproject.toml') }}
files: .venv
key: poetry-${{ runner.os }}-${{ hashFiles('pyproject.toml') }}
path: .venv

- name: Install Dependencies
if: steps.cache-deps.outputs.restored == 'false'
if: steps.cache-deps.outputs.cache-hit != 'true'
run: poetry install --with dev

- name: Generate Documentation
Expand Down
18 changes: 8 additions & 10 deletions .github/workflows/test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -22,14 +22,13 @@ jobs:

- name: Cache Dependencies
id: cache-deps
uses: threeal/cache-action@v0.2.1
uses: actions/cache@v4.2.3
with:
key: poetry-${{ runner.os }}
version: ${{ hashFiles('pyproject.toml') }}
files: .venv
key: poetry-${{ runner.os }}-${{ hashFiles('pyproject.toml') }}
path: .venv

- name: Install Dependencies
if: steps.cache-deps.outputs.restored == 'false'
if: steps.cache-deps.outputs.cache-hit != 'true'
run: poetry install --with dev

- name: Check Format
Expand Down Expand Up @@ -57,14 +56,13 @@ jobs:

- name: Cache Dependencies
id: cache-deps
uses: threeal/cache-action@v0.2.1
uses: actions/cache@v4.2.3
with:
key: poetry-${{ runner.os }}
version: ${{ hashFiles('pyproject.toml') }}
files: .venv
key: poetry-${{ runner.os }}-${{ hashFiles('pyproject.toml') }}
path: .venv

- name: Install Dependencies
if: steps.cache-deps.outputs.restored == 'false'
if: steps.cache-deps.outputs.cache-hit != 'true'
run: poetry install --with dev

- name: Test Package
Expand Down
Loading