v1.21 #19
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: C++ | |
on: [push] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Install scons and gtest | |
run: | | |
sudo apt-get install -y scons | |
sudo apt-get install -y cmake scons | |
wget https://github.com/google/googletest/archive/refs/tags/v1.14.0.tar.gz | |
tar zxvf v1.14.0.tar.gz | |
cd googletest-1.14.0 | |
cmake . | |
make | |
sudo make install | |
- name: Build examples | |
run: | | |
cd examples | |
scons | |
- name: Test | |
run: | | |
cd test | |
scons check |