Fix unit test again #4
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Run unit tests | |
on: | |
push: | |
branches: | |
- github_actions # todo: set to main branch before merge | |
jobs: | |
build-and-run-unit-tests: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v4 | |
- name: Build Docker image for testing | |
run: | | |
docker build --target unittest --tag arbitration_graphs_test . | |
- name: Run unit tests in Docker container | |
run: | | |
docker run --rm arbitration_graphs_test |