feature - V1.1 - New features #2
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: Continuous Integration - Docker | |
on: | |
pull_request: | |
branches: | |
- main | |
push: | |
branches: | |
- main | |
- feature/** | |
permissions: | |
contents: read | |
jobs: | |
test-docker: | |
name: Docker Tests | |
runs-on: ubuntu-latest | |
services: | |
registry: | |
image: registry:2 | |
ports: | |
- 5001:5000 | |
env: | |
TEST_TAG: localhost:5001/actions/yq-yaml-parser-action:latest | |
steps: | |
- name: Checkout | |
id: checkout | |
uses: actions/checkout@v4 | |
- name: Setup Docker BuildX | |
id: setup-buildx | |
uses: docker/setup-buildx-action@v3 | |
with: | |
install: true | |
driver-opts: network=host | |
- name: Build the Container | |
id: build | |
uses: docker/build-push-action@v6 | |
with: | |
context: . | |
push: true | |
tags: ${{ env.TEST_TAG }} | |
- name: Run the Container | |
id: run | |
env: | |
INPUT_YAML_FILE_PATH: ./yq-test-action.yml | |
run: | | |
docker run \ | |
--workdir /github/workspace \ | |
--volume "${{ github.workspace }}":/github/workspace \ | |
--volume "${{ runner.temp }}/_runner_file_commands":${{ runner.temp }}/_runner_file_commands \ | |
--env GITHUB_OUTPUT="$GITHUB_OUTPUT" \ | |
--env INPUT_YAML_FILE_PATH="${{ env.INPUT_YAML_FILE_PATH }}" \ | |
--rm ${{ env.TEST_TAG }} |