mirror of
https://github.com/leozide/leocad
synced 2025-01-15 15:40:48 +01:00
20 lines
278 B
YAML
20 lines
278 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: init
|
||
|
run: qmake PREFIX=/usr
|
||
|
- name: make
|
||
|
run: qmake PREFIX=/usr
|