Skip to content

feat: support protocol field (#24) #136

feat: support protocol field (#24)

feat: support protocol field (#24) #136

Workflow file for this run

name: support-services-operator CI
on:
push:
pull_request:
jobs:
ci:
timeout-minutes: 10
runs-on: ubuntu-latest
env:
GOPRIVATE: github.com/nukleros/*
GH_ACCESS_TOKEN: ${{ secrets.GH_ACCESS_TOKEN }}
strategy:
matrix:
go-version: [1.19]
steps:
- name: Checkout
uses: actions/[email protected]
with:
fetch-depth: 0
- name: Set up Go
uses: actions/[email protected]
with:
go-version: ${{ matrix.go-version }}
- name: Use GH_ACCESS_TOKEN to access private repos
run: git config --global url.https://[email protected]/.insteadOf https://github.com/
- name: Test
run: make test
- name: Build
run: make build