Verify upstream protobuf compatibility #88
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: Verify upstream protobuf compatibility | |
on: | |
workflow_dispatch: | |
schedule: | |
- cron: '0 0 */3 * *' | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
jobs: | |
verify-pulumi-protos: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: extractions/setup-just@v1 | |
with: | |
just-version: '1.14.0' # just for sanity | |
- uses: coursier/[email protected] | |
- uses: VirtusLab/[email protected] | |
with: | |
jvm: graalvm-java11:22.3.1 | |
power: true | |
- uses: arduino/setup-protoc@v1 | |
- name: Fetch & generate protobuf | |
run: |- | |
just cli proto all | |
- name: Compile SDK with rebuilt protobufs | |
run: |- | |
just compile-sdk |