Run most checks in CI #1
Workflow file for this run
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: run all | |
on: | |
pull_request: | |
branches: [ main ] | |
push: | |
jobs: | |
build: | |
runs-on: ubuntu-22.04 | |
steps: | |
- uses: actions/checkout@v2 | |
- name: setup environment | |
run: | | |
sudo apt-get install \ | |
cmake \ | |
g++ \ | |
git \ | |
libboost-date-time-dev \ | |
libboost-filesystem-dev \ | |
libboost-program-options-dev \ | |
libboost-regex-dev \ | |
libboost-system-dev \ | |
libboost-test-dev \ | |
libboost-thread-dev \ | |
ninja-build \ | |
qtbase5-dev \ | |
ruby \ | |
ruby-dev \ | |
xvfb | |
- name: install Ruby dependencies | |
run: | | |
gem install bundler | |
bundle install | |
- name: build and run | |
run: | | |
export DISPLAY=:99 | |
travis.sh | |