Skip to content

Remove unnecessary function declaration #30

Remove unnecessary function declaration

Remove unnecessary function declaration #30

Workflow file for this run

name: CI
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
with:
submodules: 'recursive'
- name: Get latest CMake
uses: lukka/get-cmake@latest
- name: Install ninja-build tool
uses: seanmiddleditch/gha-setup-ninja@v1
- name: Install Qt
uses: jurplel/[email protected]
- name: run-cmake
uses: lukka/[email protected]
with:
cmakeListsOrSettingsJson: CMakeListsTxtAdvanced
cmakeListsTxtPath: '${{ github.workspace }}/CMakeLists.txt'
buildDirectory: '${{ runner.workspace }}/build'
cmakeAppendedArgs: '-GNinja '
- name: Build tests
working-directory: ${{ runner.workspace }}/build
run: ninja tests
- name: Run tests
working-directory: ${{ runner.workspace }}/build
run: ninja test