Skip to content
This repository was archived by the owner on Sep 4, 2025. It is now read-only.

Commit 605cdc0

Browse files
ci: Update GitHub actions (#54)
1 parent a04a2b9 commit 605cdc0

3 files changed

Lines changed: 6 additions & 11 deletions

File tree

.github/workflows/release.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
runs-on: ubuntu-latest
1414
steps:
1515
- uses: actions/checkout@v4
16-
- uses: actions/setup-python@v4
16+
- uses: actions/setup-python@v5
1717
with:
1818
python-version: 3.12
1919
- name: Install dependencies

.github/workflows/test.yaml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ jobs:
3232
runs-on: ubuntu-latest
3333
steps:
3434
- uses: actions/checkout@v4
35-
- uses: actions/setup-python@v4
35+
- uses: actions/setup-python@v5
3636
with:
3737
cache: pip
3838
python-version: "3.12"
@@ -52,7 +52,7 @@ jobs:
5252
runs-on: ubuntu-latest
5353
steps:
5454
- uses: actions/checkout@v4
55-
- uses: actions/setup-python@v4
55+
- uses: actions/setup-python@v5
5656
with:
5757
cache: pip
5858
python-version: "3.12"
@@ -68,7 +68,7 @@ jobs:
6868
hatch run check
6969
7070
test:
71-
name: Pytest (Python ${{ matrix.python-version }}, ${{ matrix.os }}, SQLAlchemy ${{ matrix.sqlalchemy-version }})
71+
name: Pytest (Python ${{ matrix.python-version }}, ${{ matrix.os }}, SQLAlchemy ${{ matrix.sqlalchemy-version }})${{ matrix.nightly && ' (nightly)' || '' }}
7272
runs-on: ${{ matrix.os }}
7373
continue-on-error: ${{ matrix.python-version == '3.13' }}
7474
strategy:
@@ -93,7 +93,7 @@ jobs:
9393

9494
steps:
9595
- uses: actions/checkout@v4
96-
- uses: actions/setup-python@v4
96+
- uses: actions/setup-python@v5
9797
if: "${{ !matrix.nightly }}"
9898
with:
9999
cache: pip
@@ -129,7 +129,7 @@ jobs:
129129
HATCH_ENV: coverage
130130
steps:
131131
- uses: actions/checkout@v4
132-
- uses: actions/setup-python@v4
132+
- uses: actions/setup-python@v5
133133
with:
134134
python-version: "3.11"
135135
- name: Install dependencies

pyproject.toml

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -107,11 +107,6 @@ style = ["ruff check {args:.}", "ruff format --check --diff {args:.}"]
107107
style-gh = ["ruff check {args:.} --output-format github", "ruff format --check --diff {args:.}"]
108108
fmt = ["ruff --fix {args:.}", "ruff format {args:.}"]
109109

110-
[tool.black]
111-
target-version = ["py38"]
112-
line-length = 100
113-
skip-string-normalization = true
114-
115110
[tool.ruff]
116111
line-length = 100
117112
target-version = "py38"

0 commit comments

Comments
 (0)