Skip to content

Run qmake and make from build workflow #10

Run qmake and make from build workflow

Run qmake and make from build workflow #10

Workflow file for this run

name: build
on:
push:
branches: [ "master" ]
pull_request:
branches: [ "master" ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Install Qt
uses: jurplel/install-qt-action@v4
with:
version: '6.8.2'
- name: QMake
run: qmake
- name: Make
run: make