Added the launch_template_custom_user_data
variable to the metaflow-computation
#235
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: Linter | |
on: | |
push: | |
branches: | |
- master | |
pull_request: | |
branches: | |
- master | |
jobs: | |
pre-commit: | |
runs-on: ubuntu-latest | |
name: pre-commit | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: actions/setup-go@v2 | |
with: | |
go-version: '1.16.1' | |
- uses: pre-commit/[email protected] | |
validate: | |
runs-on: ubuntu-latest | |
name: terraform validate | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v2 | |
- name: terraform validate | |
uses: dflook/terraform-validate@v1 | |
with: | |
path: . |