Fix warning #21
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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@v3 | |
- name: Set up Python ${{ matrix.python-version }} | |
uses: actions/setup-python@v4 | |
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 |