Integrate python binding section into updated document flow #151
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: | |
jobs: | |
build-and-run-unit-tests: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Build core library unit test Docker image | |
uses: docker/build-push-action@v6 | |
with: | |
push: false | |
tags: | | |
ghcr.io/kit-mrt/util_caching_tests | |
target: unit_test | |
- name: Run library unit tests | |
run: | | |
docker run --rm ghcr.io/kit-mrt/util_caching_tests | |