Skip to content

chore(deps): Bump actions/checkout from 3 to 4 #125

chore(deps): Bump actions/checkout from 3 to 4

chore(deps): Bump actions/checkout from 3 to 4 #125

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/checkout@v4
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