name: Unit Tests on: workflow_dispatch: push: branches: - main pull_request: # Abort runs of *this* workflow, if a new commit with the same ref is pushed. concurrency: group: ${{ github.workflow }}-${{ github.ref }} cancel-in-progress: true jobs: test: runs-on: ubuntu-latest env: GOPRIVATE: github.com/edgelesssys/* CTEST_OUTPUT_ON_FAILURE: True steps: - uses: actions/checkout@v2 - name: Set up Go uses: actions/setup-go@v2 with: go-version: 1.18 - name: Install Dependencies run: sudo apt-get update && sudo apt-get install -y pkg-config libcryptsetup12 libcryptsetup-dev cmake libvirt-dev - name: Create and populate build folder run: mkdir build && cd build && cmake .. # Runs all test targets starting with "unit-" - name: Unit Tests run: ctest -R unit- working-directory: build