Skip to content

Update CI to current Python and Actions versions #30

Update CI to current Python and Actions versions

Update CI to current Python and Actions versions #30

Workflow file for this run

name: build
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.7", "3.10", "3.12"]
steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Install APT depenencies
run: |
sudo apt-get update
sudo apt-get -y install knxd knxd-tools
- name: Install Python dependencies
run: |
python -m pip install --upgrade pip
pip install coverage
- name: Test with coverage + unittest
run: |
coverage run --source=knxdclient -m unittest
- name: Report test coverage
if: ${{ always() }}
run: |
coverage xml
coverage report -m
- uses: codecov/codecov-action@v2
if: ${{ always() }}
with:
token: ${{ secrets.CODECOV_TOKEN }}
static-analysis:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Python 3.12
uses: actions/setup-python@v4
with:
python-version: "3.12"
- name: Install Python dependencies
run: |
python -m pip install --upgrade pip
pip install pycodestyle mypy
- name: Check typing with MyPy
run: |
mypy
- name: Check code style with PyCodestyle
run: |
pycodestyle --max-line-length 120 knxdclient/ test/
package:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Python 3.12
uses: actions/setup-python@v4
with:
python-version: "3.12"
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install setuptools wheel build
- name: Create source and wheel dist
run: |
python -m build