Skip to content

Fixing syntax error in yml file #7

Fixing syntax error in yml file

Fixing syntax error in yml file #7

Workflow file for this run

name: Unit Tests
on:
push:
paths-ignore:
- 'README.md'
jobs:
unit-tests:
name: Unit Tests
runs-on: ubuntu-latest
timeout-minutes: 5
steps:
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version: '1.20'
id: go
- name: Check out code into the Go module directory
uses: actions/checkout@v4
- name: Run Unit Tests
env:
TF_UNIT: '*'
run: |
go test ./genesyscloud/... -v -run TestUnit