1
0
mirror of https://github.com/python-LimeReport/devcontainer.git synced 2024-12-24 15:04:39 +03:00
devcontainer/.github/workflows/run-on-push.yml

31 lines
695 B
YAML
Raw Normal View History

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
2023-07-30 09:37:54 +03:00
steps:
- name: Invoke workflow with inputs
uses: benc-uk/workflow-dispatch@v1
with:
workflow: docker-publish.yml
2023-07-30 09:38:32 +03:00
inputs: '{ "qt": "${{ matrix.qt }}", "python": "${{ matrix.python }}" }'