Skip to content

migration: release branch created #4914

migration: release branch created

migration: release branch created #4914

Workflow file for this run

name: Go-CI
on:
# Triggers the workflow on pull request events for the master and release-* branches
pull_request:
branches:
- master
- release-*
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
jobs:
golangci-lint:
name: Golangci-lint
strategy:
matrix:
platform: [ ubuntu-latest ]
runs-on: ${{ matrix.platform }}
steps:
- name: Set up Go 1.18
uses: actions/setup-go@v1
with:
go-version: 1.18
- name: Check-out code
uses: actions/checkout@v2
- name: Run golangci-lint
run: make golangci