Skip to content

chore: document environment variables #12

chore: document environment variables

chore: document environment variables #12

Workflow file for this run

# Terraform Provider testing workflow.
name: tests
# This GitHub action runs your tests for each pull request and push.
# Optionally, you can turn it on using a schedule for regular testing.
on:
pull_request:
push:
# Testing only needs permissions to read the repository contents.
permissions:
contents: read
jobs:
# Ensure project builds before running testing matrix
build:
name: Build
runs-on: ubuntu-latest
timeout-minutes: 5
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@v5
with:
go-version-file: 'go.mod'
cache: true
- run: sudo apt-get install -y libseccomp-dev pkg-config
- run: go mod download
- run: ./test.sh