Some checks are pending
Tasmota Docker test / build (ubuntu-20.04, 3.10) (push) Waiting to run
Tasmota Docker test / build (ubuntu-20.04, 3.11) (push) Waiting to run
Tasmota Docker test / build (ubuntu-22.04, 3.10) (push) Waiting to run
Tasmota Docker test / build (ubuntu-22.04, 3.11) (push) Waiting to run
Publish Docker / build (push) Waiting to run
27 lines
728 B
YAML
27 lines
728 B
YAML
name: Tasmota Docker test
|
|
|
|
on:
|
|
push:
|
|
workflow_dispatch: # Manually start a workflow
|
|
|
|
jobs:
|
|
build:
|
|
strategy:
|
|
fail-fast: true
|
|
matrix:
|
|
os: [ubuntu-22.04, ubuntu-20.04]
|
|
python-version: ["3.10", "3.11"]
|
|
runs-on: ${{ matrix.os }}
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
- name: Set up Python ${{ matrix.python-version }}
|
|
uses: actions/setup-python@v5
|
|
with:
|
|
python-version: ${{ matrix.python-version }}
|
|
- name: Docker container
|
|
run: docker build -t docker-tasmota .
|
|
- name: Clone Tasmota repo
|
|
run: git clone https://github.com/arendst/Tasmota.git
|
|
- name: Build a firmware
|
|
run: bash ./compile.sh tasmota tasmota32
|