Workflow config file is invalid. Please check your config file: yaml: line 11: did not find expected '-' indicator
|
name: Build Test
|
|
|
|
on:
|
|
push:
|
|
pull_request:
|
|
workflow_dispatch:
|
|
|
|
jobs:
|
|
Ubuntu:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@latest
|
|
|
|
- name: Install Qt
|
|
uses: jurplel/install-qt-action@v2
|
|
|
|
-name: Build Qtk
|
|
- run: |
|
|
mkdir build && cd build
|
|
cmake .. && cmake --build .
|
|
|
|
|
|
|
|
|