mirror of
https://github.com/aljazceru/ark.git
synced 2025-12-17 04:04:21 +01:00
* api-spec: move the api-spec to root and init go.mod * go mod tidy * move buf files in the root as well * gh action for api-spec changes only * gh action for api-spec on push and pr
27 lines
411 B
YAML
27 lines
411 B
YAML
name: API Spec Changes
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- master
|
|
paths:
|
|
- "api-spec/**"
|
|
pull_request:
|
|
branches:
|
|
- master
|
|
paths:
|
|
- "api-spec/**"
|
|
|
|
|
|
jobs:
|
|
build:
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
- name: Checkout repository
|
|
uses: actions/checkout@v2
|
|
|
|
- uses: bufbuild/buf-setup-action@v1.3.1
|
|
|
|
- name: check proto linting
|
|
run: buf lint |