Add additional bindings to filter end devices and gateways #5323
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: API | |
on: | |
pull_request: | |
paths: | |
- ".github/workflows/proto.yml" | |
- "**.proto" | |
- "tools/**" | |
jobs: | |
protos: | |
name: Generate protos | |
runs-on: ubuntu-22.04 | |
timeout-minutes: 5 | |
steps: | |
- name: Check out code | |
uses: actions/checkout@v4 | |
- name: Install Go and Dependencies | |
uses: ./.github/actions/install-go-and-deps | |
- name: Build Mage | |
uses: ./.github/actions/build-mage | |
- name: Generate protos | |
run: tools/bin/mage proto:clean proto:all | |
- name: Lint protos | |
run: tools/bin/mage proto:lint | |
- name: Check for diff | |
run: tools/bin/mage git:diff |