From e965779fa189e82dda2ebf5f021c1be4e18f70f3 Mon Sep 17 00:00:00 2001
From: Jesse Mapel <jmapel@usgs.gov>
Date: Fri, 6 Aug 2021 10:23:02 -0700
Subject: [PATCH] Getting GH actions working (#346)

* added flag for internal/external deps

* Fixed name and quotes

* Actually fixed name

* added matrix prefix

* Disabled internal deps

* Cleaned up extra item
---
 .github/workflows/ci_testing.yml | 9 +--------
 1 file changed, 1 insertion(+), 8 deletions(-)

diff --git a/.github/workflows/ci_testing.yml b/.github/workflows/ci_testing.yml
index c639894..ffc9986 100644
--- a/.github/workflows/ci_testing.yml
+++ b/.github/workflows/ci_testing.yml
@@ -38,16 +38,9 @@ jobs:
         run: |
           mkdir -p build
           cd build
-          cmake -DCMAKE_BUILD_TYPE=RELEASE -DCOVERAGE=ON ..
+          cmake -DCMAKE_BUILD_TYPE=RELEASE -DUSGSCSM_EXTERNAL_DEPS=ON ..
           cmake --build .
       - name: Test Package
         run: |
           cd build
           ctest -VV
-      - name: Upload Coverage
-        uses: codecov/codecov-action@v1
-        with:
-          token: ${{ secrets.CODECOV_TOKEN }}
-          fail_ci_if_error: true
-          verbose: true
-        if: matrix.os == 'ubuntu-latest' && matrix.python-version == '3.9'
-- 
GitLab