mirror of
https://github.com/python-LimeReport/devcontainer.git
synced 2024-12-23 14:43:00 +03:00
32 lines
732 B
YAML
32 lines
732 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
|
|
permissions:
|
|
actions: write
|
|
steps:
|
|
- name: Invoke workflow with inputs
|
|
uses: benc-uk/workflow-dispatch@v1
|
|
with:
|
|
workflow: docker-publish.yml
|
|
inputs: '{ "qt": "${{ matrix.qt }}", "python": "${{ matrix.python }}" }'
|