Skip to content

Create c-cpp.yml

Create c-cpp.yml #1

Workflow file for this run

name: Qt CMake Build
on:
push:
branches:
- main
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [windows-latest, ubuntu-latest]
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Set up CMake
uses: lukka/get-cmake@v1
- name: Set up Qt
uses: jurplel/setup-qt@v2
with:
version: '6.5.x'
- name: Build
run: |
mkdir build
cd build
cmake ..
make