Compute schema-minimal.json #3
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: minimal-schema | ||
description: | | ||
Check failure on line 3 in .github/workflows/aws-minimal-schema.yml GitHub Actions / minimal-schemaInvalid workflow file
|
||
Check that minimal schema is up-to-date. | ||
on: | ||
pull_request: | ||
paths-ignore: | ||
- CHANGELOG.md | ||
jobs: | ||
check_minimal_schema: | ||
steps: | ||
- name: Checkout Repo | ||
uses: actions/checkout@v4 | ||
with: | ||
ref: ${{ env.PR_COMMIT_SHA }} | ||
submodules: true | ||
- name: make upstream | ||
run: make upstream | ||
- name: Install Go | ||
uses: actions/setup-go@v5 | ||
with: | ||
go-version: 1.22.x | ||
cache-dependency-path: | | ||
provider/go.sum | ||
upstream/go.sum | ||
- name: make minimal_schema_no_deps | ||
run: make minimal_schema_no_deps | ||
- name: Check worktree clean | ||
uses: pulumi/git-status-check-action@v1 | ||
with: | ||
allowed-changes: | | ||
sdk/**/pulumi-plugin.json | ||
sdk/dotnet/Pulumi.*.csproj | ||
sdk/go/**/pulumiUtilities.go | ||
sdk/nodejs/package.json | ||
sdk/python/pyproject.toml |