Remove unnecessary function declaration #30
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: 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 | |