Skip to content

Add documentation CI job #48

Add documentation CI job

Add documentation CI job #48

Workflow file for this run

# Copyright 2024 Hewlett Packard Enterprise Development LP
name: Test
on:
push:
branches:
- main
pull_request:
jobs:
test:
runs-on: ubuntu-20.04
strategy:
matrix:
go: [ '1.22.3' ]
steps:
- uses: actions/checkout@v2
- uses: actions/setup-go@v2
with:
go-version: ${{ matrix.go }}
- run: go version
- run: make test
- run: make testacc-simulation