Skip to content

build(ci): add support for PR labeler #97

build(ci): add support for PR labeler

build(ci): add support for PR labeler #97

Workflow file for this run

name: Lint
# This workflow is run on every pull request and push to master
# The `golangci` will pass without running if no *.{go, mod, sum} files have been changed.
on:
pull_request:
push:
branches:
- main
env:
GOPRIVATE: github.com/milkyway-labs
GH_ACCESS_TOKEN: ${{ secrets.GOPRIVATE_ACCESS_TOKEN }}
jobs:
GolangCI:
runs-on: ubuntu-latest
timeout-minutes: 30
steps:
- name: Checkout 🛎️
uses: actions/checkout@v4
- name: Setup Go 🧰
uses: actions/setup-go@v5
with:
go-version: '1.22'
- name: Setup GOPRIVATE 🛡️
run: git config --global url.https://[email protected]/.insteadOf https://github.com/
- name: Compute diff 📜
uses: technote-space/[email protected]
id: git_diff
with:
SUFFIX_FILTER: |
.go
.mod
.sum
- name: Run lint ✅
run: make lint