Skip to content

chore: update dependency & Go versions #89

chore: update dependency & Go versions

chore: update dependency & Go versions #89

Workflow file for this run

name: ci
on:
pull_request:
types: [opened, reopened, synchronize]
push:
branches:
- main
jobs:
test:
if: false # Remove this line to enable integration tests
runs-on: ubuntu-latest
steps:
- name: Install Go
uses: actions/setup-go@v6
with:
go-version-file: go.mod
- name: Checkout code
uses: actions/checkout@v6
# Build the connector binary, then run sync-test.
# Configure with valid entitlement/principal IDs.
# Add additional test jobs as needed.
- name: Build baton-fastly
run: go build ./cmd/baton-fastly
- name: Test connector syncing
uses: ConductorOne/github-workflows/actions/sync-test@v4
with:
connector: ./baton-fastly
baton-entitlement: '<entitlement-id>'
baton-principal: '<principal-id>'
baton-principal-type: 'user'