Skip to content

Enable acceptance tests in CI #6

Enable acceptance tests in CI

Enable acceptance tests in CI #6

Workflow file for this run

# Copyright 2024 Hewlett Packard Enterprise Development LP
name: Test
on: [push, pull_request]
jobs:
test:
runs-on: ubuntu-20.04
strategy:
matrix:
go: [ '1.21' ]
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