Skip to content

Merge pull request #5 from ks6088ts/feature/issue-4_support-docker #8

Merge pull request #5 from ks6088ts/feature/issue-4_support-docker

Merge pull request #5 from ks6088ts/feature/issue-4_support-docker #8

Workflow file for this run

name: docker
on:
push:
branches:
- "main"
- "feature/**"
pull_request:
branches:
- "main"
jobs:
docker:
runs-on: "ubuntu-latest"
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0 # to retrieve git tags
# How to set system path variable in github action workflow: https://stackoverflow.com/a/68214331
- name: Add to PATH
shell: bash
run: |
echo "/home/runner/bin" >> $GITHUB_PATH
- name: Run CI tests for Docker
shell: bash
run: |
make ci-test-docker TOOLS_DIR="/home/runner/bin"