Skip to content

Making SatSim into a library, adjusting example project accordingly #117

Making SatSim into a library, adjusting example project accordingly

Making SatSim into a library, adjusting example project accordingly #117

Workflow file for this run

name: Build and run tests on pull request v2
on:
pull_request:
branches: [ "main" ]
env:
BUILD_TYPE: Release
jobs:
run_test_suites_v2:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Install gnuplot
run: sudo apt-get install gnuplot
- name: Run test suites
working-directory: ${{github.workspace}}
run: |
rm -rf build
mkdir build
cd build/
cmake .. -DCMAKE_BUILD_TYPE=RELEASE
cmake --build .
./Satellite_tests
./utils_tests
./gs_tests
cd ..
rm test_plot.png