Skip to content
This repository has been archived by the owner on Jan 3, 2024. It is now read-only.

Bump actions/setup-go from 4 to 5 #38

Bump actions/setup-go from 4 to 5

Bump actions/setup-go from 4 to 5 #38

Workflow file for this run

name: CI
on:
pull_request:
push:
branches:
- master
jobs:
build:
runs-on: ubuntu-latest
env:
GOFLAGS: -mod=readonly
steps:
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version: 1.18.3
- name: Checkout code
uses: actions/checkout@v4
- name: Download license information for dependencies
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: make license-cache
- name: Check licenses
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: make license-check
- name: Check Diff
run: |
make check-diff
- name: Lint
env:
LINTER_FLAGS: '--timeout 5m'
run: |
make lint
- name: Run tests
run: |
make test