Skip to content

Commit 4e6625a

Browse files
authored
Minor fixes (#265)
1 parent a639cc2 commit 4e6625a

File tree

2 files changed

+11
-3
lines changed

2 files changed

+11
-3
lines changed

.github/release-drafter.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,9 @@ categories:
1313
label: 'documentation'
1414
- title: '🐛 Bug Fixes'
1515
label: 'bug'
16+
- title: '📦 Dependencies'
17+
label: 'dependencies'
18+
1619
template: |
1720
## What's changed
1821
$CHANGES

.github/workflows/main.yaml

Lines changed: 8 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,16 +9,21 @@ on:
99
- main
1010
jobs:
1111
analyse:
12-
12+
name: "Python ${{ matrix.python-version }}"
1313
runs-on: ubuntu-latest
1414

15+
strategy:
16+
fail-fast: false
17+
matrix:
18+
python-version: ["3.9", "3.10", "3.11", "3.12"]
19+
1520
steps:
1621
- uses: actions/checkout@v4
1722

18-
- name: Set up Python 3.9
23+
- name: Set up Python ${{ matrix.python-version }}
1924
uses: actions/setup-python@v5
2025
with:
21-
python-version: 3.9
26+
python-version: "${{ matrix.python-version }}"
2227

2328
- name: Set up Poetry
2429
uses: Gr1N/setup-poetry@v8

0 commit comments

Comments
 (0)