Unverified Commit e965779f authored by Jesse Mapel's avatar Jesse Mapel Committed by GitHub
Browse files

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
parent 1b2d30b3
Loading
Loading
Loading
Loading
+1 −8
Original line number Diff line number Diff line
@@ -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'