Skip to content

ci: Implement testing with GH actions #1

ci: Implement testing with GH actions

ci: Implement testing with GH actions #1

Workflow file for this run

name: Terratest
on:
push:
branches:
- 'init'
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Go
uses: actions/setup-go@v5
with:
go-version: '1.22.x'
- name: Install dependencies
run: |
pwd
cd test
go get .
- name: Test with the Go CLI
run: |
pwd
cd test
go test -v