refactor: drop RPC layer; goridge is a pure IPC transport library (#203) #334
This file contains hidden or 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: Linters | |
| on: [push, pull_request] | |
| jobs: | |
| linters: | |
| name: Golang-CI (lint) | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Check out code | |
| uses: actions/checkout@v6 | |
| - name: Set up Go | |
| uses: actions/setup-go@v6 | |
| with: | |
| go-version: 'stable' | |
| - name: Run linter | |
| uses: golangci/golangci-lint-action@v9 # Action page: <https://github.com/golangci/golangci-lint-action> | |
| with: | |
| only-new-issues: false # show only new issues if it's a pull request |