Skip to content

Fix docker push tag #926

Fix docker push tag

Fix docker push tag #926

Workflow file for this run

name: Unit-Testing
on: push
jobs:
unit-test:
runs-on: ubuntu-latest
if: ${{ always() }}
steps:
- uses: actions/checkout@v2
- name: Update ubuntu
run: sudo apt-get update
- name: Install dependencies
run: |
./scripts/generate_datafed.sh
sudo ./scripts/install_core_dependencies.sh
./scripts/generate_datafed.sh
- name: Build
run: |
cmake -S. -B build -DCMAKE_BUILD_TYPE=Debug
cmake --build build -j4
- name: Run tests
run: |
cmake --build build --target test