Skip to content

Commit

Permalink
Minor fixes (#265)
Browse files Browse the repository at this point in the history
  • Loading branch information
iMicknl authored Jan 7, 2024
1 parent a639cc2 commit 4e6625a
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 3 deletions.
3 changes: 3 additions & 0 deletions .github/release-drafter.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,9 @@ categories:
label: 'documentation'
- title: '🐛 Bug Fixes'
label: 'bug'
- title: '📦 Dependencies'
label: 'dependencies'

template: |
## What's changed
$CHANGES
Expand Down
11 changes: 8 additions & 3 deletions .github/workflows/main.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -9,16 +9,21 @@ on:
- main
jobs:
analyse:

name: "Python ${{ matrix.python-version }}"
runs-on: ubuntu-latest

strategy:
fail-fast: false
matrix:
python-version: ["3.9", "3.10", "3.11", "3.12"]

steps:
- uses: actions/checkout@v4

- name: Set up Python 3.9
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: 3.9
python-version: "${{ matrix.python-version }}"

- name: Set up Poetry
uses: Gr1N/setup-poetry@v8
Expand Down

0 comments on commit 4e6625a

Please sign in to comment.