Qt-Advanced-Docking-System/.github/workflows/linux-builds.yml
Workflow config file is invalid. Please check your config file: yaml: line 13: found a tab character where an indentation space is expected
2019-12-02 08:10:23 +01:00

20 lines
312 B
YAML
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

name: linux-builds
on: [push]
jobs:
build:
runs-on: ubuntu-18.04
steps:
- uses: actions/checkout@v1
- name: install qt
run: |
sudo apt-get update fix-missing
sudo apt-get install qt5-default
- name: qmake
run: qmake
- name: make
run: make -j4