Add the ability for partial cloudevent decoding. #61
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: golangci-lint | |
on: | |
pull_request: | |
branches: [ '**' ] | |
env: | |
GOPRIVATE: github.com/DIMO-Network | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
jobs: | |
golangci: | |
runs-on: self-hosted | |
name: lint | |
steps: | |
- name: Install Go | |
uses: actions/setup-go@v5 | |
with: | |
go-version: 1.22 | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
- name: modVerify | |
run: go mod verify | |
- name: Get golangci-lint | |
run: make tools-golangci-lint | |
- name: Run golangci-lint | |
run: make lint |