[download-microservice] Refactor: Clarify Execution, make bin finding clearer #15
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
# This GitHub Action is intended to simply test that the | |
# Microservice Download is able to build with Docker properly. | |
name: Microservice Download Docker Build | |
on: | |
pull_request: | |
branches: [ main ] | |
paths: | |
- 'microservices/download/**' | |
workflow_dispatch: | |
jobs: | |
Test: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout the latest code | |
uses: actions/checkout@v3 | |
- name: Build Docker Image | |
run: cd ./microservices/download; docker build . |