Fix kuma issues and heartbeat monitoring #59
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: Tavros Pull Request CI | |
on: | |
pull_request: | |
branches: [ main ] | |
jobs: | |
tavros-ci: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Build tavros-buildtools:latest image | |
env: | |
IMAGE_TAG: ghcr.io/ms3inc/tavros-buildtools:latest | |
run: podman unshare ./.github/workflows/buildtools-build.sh | |
- name: Run make install test | |
run: podman run -it --rm -v $PWD:$PWD -w $PWD ghcr.io/ms3inc/tavros-buildtools:latest bash -c "make install test" |