Skip to content

Commit

Permalink
Fix CI/CD
Browse files Browse the repository at this point in the history
  • Loading branch information
iMicknl committed Jan 7, 2024
1 parent d17047e commit 47cd18f
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 11 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:
- master
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
1 change: 0 additions & 1 deletion sagemcom_api/__init__.py
Original file line number Diff line number Diff line change
@@ -1,2 +1 @@
"""Package to communicate with Sagemcom F@st internal APIs."""
__version__ = "1.0.1"
7 changes: 0 additions & 7 deletions tests/test_sagemcom.py
Original file line number Diff line number Diff line change
@@ -1,8 +1 @@
"""Test for Sagemcom F@st client."""

from sagemcom_api import __version__


def test_version():
"""Test if version number is 1.0.0."""
assert __version__ == "1.0.0"

0 comments on commit 47cd18f

Please sign in to comment.