Skip to content

Merge pull request #3 from iegrsy/mert/class_tool #2

Merge pull request #3 from iegrsy/mert/class_tool

Merge pull request #3 from iegrsy/mert/class_tool #2

Workflow file for this run

name: Qt classification tool application
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
permissions:
contents: read
env:
BUILD_TYPE: Release
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Install Qt
uses: jurplel/install-qt-action@v3
- name: Configure CMake
run: cmake -S ${{github.workspace}}/ClassificationTool -B ${{github.workspace}}/build -DCMAKE_BUILD_TYPE=${{env.BUILD_TYPE}}
- name: Build
# Build your program with the given configuration
run: cmake --build ${{github.workspace}}/build --config ${{env.BUILD_TYPE}}