mirror of
https://github.com/leozide/leocad
synced 2025-01-01 06:19:55 +01:00
22 lines
365 B
YAML
22 lines
365 B
YAML
name: C/C++ CI
|
|
|
|
on:
|
|
push:
|
|
branches: [ "master" ]
|
|
pull_request:
|
|
branches: [ "master" ]
|
|
|
|
jobs:
|
|
build:
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
- uses: actions/checkout@v3
|
|
- name: Install Qt
|
|
uses: jurplel/install-qt-action@v3
|
|
with:
|
|
cache: 'false'
|
|
- name: init
|
|
run: qmake PREFIX=/usr
|
|
- name: make
|
|
run: make
|