Add the Catch2 install to workflow

This commit is contained in:
Skye Deving 2021-01-09 12:09:08 -06:00
parent f84952d6ae
commit 7055e7dbc0

View File

@ -17,6 +17,14 @@ jobs:
steps: steps:
- uses: actions/checkout@v2 - uses: actions/checkout@v2
- name: Install catch2
run: |
curl -L https://github.com/catchorg/Catch2/archive/v2.13.4.tar.gz -o catch2.tar.gz
tar xvf catch2.tar.gz
cd Catch2-2.13.4
cmake -Bbuild -H. -DBUILD_TESTING=OFF
sudo cmake --build build/ --target install
- name: Fetch external libs - name: Fetch external libs
run: | run: |
# Download # Download