Skip to content

add a build action

add a build action #1

Workflow file for this run

name: Build
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v2
- name: Set up Qt
uses: jurplel/install-qt-action@v2
with:
version: '5.15.13'
host: 'linux'
target: 'desktop'
arch: 'gcc_64'
- name: Install build dependencies
run: sudo apt-get install -y qt5-qmake qtbase5-dev qtdeclarative5-dev
- name: Build project
run: |
mkdir build
cd build
qmake ../audio-to-text-convertor-app.pro
make