123456789101112131415161718192021222324252627 |
- name: Test Verification
- on: [push]
- jobs:
- build:
- runs-on: ubuntu-latest
- steps:
- - uses: actions/checkout@v1
- - name: Init submodules
- run: git submodule update
- - name: Build the Docker image
- run: docker build .
- - name: Run tests
- run: docker run ubuntu_debugimage:latest ctest /build
-
-
-
-
-
-
-
-
|