Skip to content

Commit

Permalink
chore(release): 1.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Ravencentric committed Jul 22, 2024
1 parent 4cd4f27 commit cf2d7c5
Show file tree
Hide file tree
Showing 5 changed files with 145 additions and 132 deletions.
3 changes: 2 additions & 1 deletion .github/workflows/docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ on:
- main
paths:
- docs/**/*.*
- src/**/*.*
- .github/workflows/docs.yml
- mkdocs.yml
workflow_dispatch:
Expand Down Expand Up @@ -44,7 +45,7 @@ jobs:
- uses: actions/cache@v4
name: Define a cache for the venv based on the dependencies lock file
with:
key: ubuntu-latest-${{ hashFiles('poetry.lock') }}
key: ubuntu-latest-3.12-${{ hashFiles('poetry.lock') }}
path: ./.venv

- name: Install dependencies
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ jobs:
- uses: actions/cache@v4
name: Define a cache for the venv based on the dependencies lock file
with:
key: ${{ matrix.os }}-${{ hashFiles('poetry.lock') }}
key: ${{ matrix.os }}-${{ matrix.python-version }}-${{ hashFiles('poetry.lock') }}
path: ./.venv

- name: Install the project dependencies
Expand Down
6 changes: 3 additions & 3 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
@@ -1,16 +1,16 @@
---
repos:
- repo: https://github.com/astral-sh/ruff-pre-commit
rev: v0.5.0
rev: v0.5.4
hooks:
- id: ruff
args: ['--fix']
- repo: https://github.com/astral-sh/ruff-pre-commit
rev: v0.5.0
rev: v0.5.4
hooks:
- id: ruff-format
- repo: https://github.com/python-poetry/poetry
rev: '1.8.2'
rev: '1.8.3'
hooks:
- id: poetry-check
- id: poetry-lock
Loading

0 comments on commit cf2d7c5

Please sign in to comment.