Add an optional health check to the container definition (#15) #229
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: workflow | |
on: [push, pull_request] | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v2 | |
- name: Install Go | |
uses: actions/setup-go@v1 | |
with: { go-version: 1.14 } | |
- name: Install Terraform | |
uses: hashicorp/setup-terraform@v1 | |
with: { terraform_version: 1.0.11 } | |
- name: Install Taskfile | |
run: curl -sL https://taskfile.dev/install.sh | sh | |
- name: Run tests | |
run: ./bin/task test |