Skip to content

Update module github.com/xanzy/go-gitlab to v0.115.0 #162

Update module github.com/xanzy/go-gitlab to v0.115.0

Update module github.com/xanzy/go-gitlab to v0.115.0 #162

Workflow file for this run

name: CI
on: [push, pull_request]
jobs:
test:
name: test
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Setup go
uses: actions/setup-go@v3
with:
go-version: 1.14
- name: Run linter
run: |
GO111MODULE=off go get golang.org/x/lint/golint
make lint
- name: Run test
run: make test
env:
GITLAB_TOKEN: ${{ secrets.GITLAB_TOKEN }}