Skip to content

Commit

Permalink
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 13 deletions.
11 changes: 2 additions & 9 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,12 +19,12 @@ jobs:
PIPX_VERSION: "1.4.1"
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v4
- uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Set up pip cache
if: runner.os == 'Linux'
uses: actions/cache@v3
uses: actions/cache@v4
with:
path: ~/.cache/pip
key: ${{ runner.os }}-pip-${{ hashFiles('pyproject.toml') }}
Expand Down Expand Up @@ -66,13 +66,6 @@ jobs:
else
echo "Versions do not match." && exit 1
fi
- name: Run spell check
uses: streetsidesoftware/cspell-action@v2
with:
check_dot_files: true
files: "**/*.md"
incremental_files_only: false
strict: true
- name: Run Hatch script for code quality checks
run: hatch run ${{ env.HATCH_ENV }}:check
- name: Run tests
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/codeql.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,11 +17,11 @@ jobs:
security-events: write
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v3
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: "3.x"
- uses: github/codeql-action/init@v2
- uses: github/codeql-action/init@v3
with:
languages: python
- uses: github/codeql-action/analyze@v2
- uses: github/codeql-action/analyze@v3

0 comments on commit 052ffd4

Please sign in to comment.