Update c-cpp.yml #6
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |