1
0
mirror of https://github.com/python-LimeReport/devcontainer.git synced 2024-12-23 14:43:00 +03:00

feat: add automated build of devcontainers

This commit is contained in:
Maxim Slipenko 2023-07-30 09:36:50 +03:00
parent 5b58626687
commit 67f2330577

29
.github/workflows/run-on-push.yml vendored Normal file
View File

@ -0,0 +1,29 @@
on:
push:
branches:
- main
jobs:
build:
runs-on: ubuntu-latest
name: Request devcontainer for Qt ${{ matrix.qt }} and ${{ matrix.python }}
strategy:
fail-fast: false
matrix:
include:
- qt: 5.14.2
python: 3.7
- qt: 5.15.2
python: 3.9
- qt: 6.3.2
python: 3.9
- qt: 6.4.2
python: 3.9
- qt: 6.5.1
python: 3.9
- name: Invoke workflow with inputs
uses: benc-uk/workflow-dispatch@v1
with:
workflow: docker-publish.yml
inputs: '{ "qt": ${{ matrix.qt }}, "python": ${{ matrix.python }} }'