Skip to content

Allow can and try functions to return known results with unknown values in the arguments #236

Allow can and try functions to return known results with unknown values in the arguments

Allow can and try functions to return known results with unknown values in the arguments #236

Workflow file for this run

name: Per-commit Checks
on:
push:
workflow_dispatch:
pull_request:
jobs:
unit_tests:
strategy:
matrix:
include:
- runs-on: ubuntu-latest
target: linux_amd64
- runs-on: windows-latest
target: windows_amd64
fail-fast: false
name: "Unit Tests on ${{ matrix.target }}"
runs-on: "${{ matrix.runs-on }}"
steps:
- name: "Disable git crlf conversions"
if: ${{ runner.os == 'Windows' }}
# HCL preserves the input line endings when processing a heredoc,
# and our tests for heredocs are written to expect the result for
# the source code as checked in to the repository, so git's normal
# tampering with the line endings would invalidate those tests.
run: |
git config --global core.autocrlf false
- name: "Fetch source code"
uses: actions/checkout@755da8c3cf115ac066823e79a1e1788f8940201b # https://github.com/actions/checkout/releases/tag/v3.2.0
- name: Install Go
uses: actions/setup-go@6edd4406fa81c3da01a34fa6f6343087c207a568 # https://github.com/actions/setup-go/releases/tag/v3.5.0
with:
go-version: 1.18
- name: Go test
run: |
go test ./... -race
fmt_and_vet:
name: "fmt and lint"
runs-on: ubuntu-latest
steps:
- name: "Fetch source code"
uses: actions/checkout@755da8c3cf115ac066823e79a1e1788f8940201b # https://github.com/actions/checkout/releases/tag/v3.2.0
- name: Install Go
uses: actions/setup-go@6edd4406fa81c3da01a34fa6f6343087c207a568 # https://github.com/actions/setup-go/releases/tag/v3.5.0
with:
go-version: 1.18
- name: "Check vet"
run: |
go vet ./...
- name: "Check fmt"
run: |
go fmt ./...
if [[ -z "$(git status --porcelain)" ]]; then
echo "Formatting is consistent with 'go fmt'."
else
echo "Run 'go fmt ./...' to automatically apply standard Go style to all packages."
git status --porcelain
exit 1
fi