improving the system status api to make it respond with a timeseries data #416
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, and breaking change detection | |
on: | |
pull_request: | |
permissions: | |
contents: read | |
jobs: | |
lint-breaking-changes: | |
name: Lint, and breaking change detection | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Setup Buf | |
uses: bufbuild/buf-setup-action@v1 | |
- name: Setup Task | |
uses: arduino/setup-task@v1 | |
- name: Lint | |
run: task lint | |
- uses: bufbuild/buf-breaking-action@v1 | |
with: | |
against: "https://github.com/porter-dev/api-contracts.git#branch=main" |