Merge pull request #238 from ks6088ts-labs/feature/issue-237_foundry-… #683
This file contains hidden or 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: 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" |