mirror of
https://github.com/python-LimeReport/devcontainer.git
synced 2025-01-11 15:38:08 +03:00
30 lines
670 B
YAML
30 lines
670 B
YAML
|
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 }} }'
|