Skip to content

Update unit-tests.yml #3

Update unit-tests.yml

Update unit-tests.yml #3

Workflow file for this run

# Terraform Provider test workflow.
name: Test
# This GitHub action creates launch test when a commit is done
on: [push]
jobs:
run-tests:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@v4
with:
go-version: '1.20.0' # The Go version to download (if necessary) and use.
go-version-file: './go.mod'
- run: go mod tidy && go test -v -tags=unit_tests ./...