mirror of
https://github.com/edgelesssys/constellation.git
synced 2024-10-01 01:36:09 -04:00
0a190c2bf6
Co-authored-by: Paul Meyer <49727155+katexochen@users.noreply.github.com>
36 lines
838 B
YAML
36 lines
838 B
YAML
name: Proto generate check
|
|
|
|
on:
|
|
workflow_dispatch:
|
|
push:
|
|
branches:
|
|
- main
|
|
- "release/**"
|
|
paths:
|
|
- "**.proto"
|
|
- ".github/workflows/test-proto.yml"
|
|
- "proto/Dockerfile.gen-proto"
|
|
pull_request:
|
|
paths:
|
|
- "**.proto"
|
|
- ".github/workflows/test-proto.yml"
|
|
- "proto/Dockerfile.gen-proto"
|
|
|
|
jobs:
|
|
go-generate:
|
|
runs-on: ubuntu-22.04
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@24cb9080177205b6e8c946b17badbe402adc938f # v3.4.0
|
|
with:
|
|
ref: ${{ !github.event.pull_request.head.repo.fork && github.head_ref || '' }}
|
|
|
|
- name: Generate proto
|
|
shell: bash
|
|
working-directory: proto
|
|
env:
|
|
DOCKER_BUILDKIT: 1
|
|
run: |
|
|
docker build -o .. -f Dockerfile.gen-proto ..
|
|
git diff --exit-code
|