Skip to content

Update c-cpp.yml

Update c-cpp.yml #6

Workflow file for this run

name: C++ Qt6 CI
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Install Qt6
uses: WillBrennan/[email protected]
with:
qt-version: '6.2.0'
modules: 'qtcharts' # Add other modules as needed
- name: Set up Build Environment
run: |
sudo apt-get update
sudo apt-get install -y build-essential
- name: Build Project
run: |
qmake
make