Skip to content

Bump paho-mqtt from 1.6.1 to 2.0.0 #68

Bump paho-mqtt from 1.6.1 to 2.0.0

Bump paho-mqtt from 1.6.1 to 2.0.0 #68

Workflow file for this run

name: ci
on:
push:
paths-ignore:
- 'README.md'
branches:
- '**'
jobs:
test:
name: Lint test
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@master
- name: Setup Python
uses: actions/setup-python@v5
with:
python-version: 3.8
- name: Install dependencies
run: |
python -m pip install --upgrade pip
- name: Lint with flake8
run: |
pip install flake8
flake8 . --max-line-length=130
buildx:
runs-on: ubuntu-latest
needs: test
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Set up QEMU
uses: docker/setup-qemu-action@v3
- name: Set up Docker Buildx
id: buildx
uses: docker/setup-buildx-action@v3
- name: Available platforms
run: echo ${{ steps.buildx.outputs.platforms }}
- name: Run Buildx
run: |
docker buildx build \
--platform linux/arm/v7,linux/arm64 .