Merge pull request #571 from Tarsnap/tasidelabel #152
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: Compile & test | |
# Run whenever we push to any branch without a "/", other than [coverity-scan]. | |
on: | |
push: | |
branches: | |
- '*' | |
- '!coverity-scan' | |
jobs: | |
Ubuntu: | |
name: Ubuntu | |
runs-on: ubuntu-20.04 | |
steps: | |
- name: Update software list | |
run: sudo apt-get update | |
- name: Install software | |
run: sudo apt-get install --no-install-recommends | |
qtbase5-dev qttools5-dev-tools libqt5sql5-sqlite | |
- name: Checkout code | |
uses: actions/checkout@v2 | |
- name: Run qmake | |
run: QT_SELECT=qt5 qmake | |
- name: Compile | |
run: make | |
- name: Test binaries | |
run: make test |