Add new Subscribe2 method #418
Workflow file for this run
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: Lint | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
permissions: | |
contents: read | |
jobs: | |
proto: | |
runs-on: ubuntu-latest | |
steps: | |
- name: checkout source | |
uses: actions/checkout@v1 | |
- name: run protolint | |
uses: plexsystems/[email protected] | |
with: | |
configDirectory: . | |
srcDirectory: ./proto | |
go: | |
name: Lint (Go) | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/setup-go@v2 | |
with: | |
go-version: "1.17.8" # The Go version to download (if necessary) and use. | |
- uses: actions/checkout@v2 | |
- name: golangci-lint | |
uses: golangci/golangci-lint-action@v3 | |
with: | |
version: v1.45.2 | |
args: --timeout=5m | |
dart: | |
name: Lint (dart) | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: dart-lang/[email protected] | |
- run: dart pub get | |
working-directory: ./dart | |
- run: dev/dart/generate | |
- run: dart analyze | |
working-directory: ./dart |