Run Test #72
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: 'Run Test' | |
on: | |
workflow_dispatch: | |
inputs: | |
use_modules_from_terraform_registry: | |
type: boolean | |
required: false | |
env: | |
TF_CLI_ARGS: "-no-color" | |
TF_INPUT: 0 | |
permissions: | |
contents: read | |
jobs: | |
test_1: | |
runs-on: ubuntu-latest | |
environment: test | |
# Use the Bash shell regardless whether the GitHub Actions runner is ubuntu-latest, macos-latest, or windows-latest | |
defaults: | |
run: | |
shell: bash | |
steps: | |
- name: Print GitHub Actions Context | |
run: echo "${{ toJson(github) }}" | |
- name: Print GitHub link | |
run: | | |
echo "Job link: ${{ env.GITHUB_SERVER_URL }}/${{ env.GITHUB_REPOSITORY }}/actions/runs/${{ env.GITHUB_RUN_ID }}/${{ env.GITHUB_JOB }}" |