Skip to content

More validation and fixes #52

More validation and fixes

More validation and fixes #52

Workflow file for this run

# This workflow will build a golang project
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-go
name: Test
on: pull_request
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version: stable
- name: Build
run: go build -v ./...
- name: Test
run: go test -v ./...
env:
LUMOS_API_TOKEN: ${{ secrets.LUMOS_API_TOKEN }}
LUMOS_API_URL: ${{ vars.LUMOS_API_URL }}
TF_ACC: 1
APP_ID: ${{ vars.APP_ID }}
APP_NAME: ${{ vars.APP_NAME }}
GROUP_ID: ${{ vars.GROUP_ID }}
GROUP_NAME: ${{ vars.GROUP_NAME }}
USER_EMAIL: ${{ vars.USER_EMAIL }}
USER_ID: ${{ vars.USER_ID }}
PERMISSION_ID: ${{ vars.PERMISSION_ID }}