-
Notifications
You must be signed in to change notification settings - Fork 158
50 lines (46 loc) · 1.16 KB
/
aws-minimal-schema.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
name: minimal-schema
description: |
Check that minimal schema is up-to-date.
on:
pull_request:
paths-ignore:
- CHANGELOG.md
workflow_dispatch: {}
push:
branches:
# check integration branch
- master
paths-ignore:
- "**.md"
# check releases and pre-releases
tags-ignore:
- sdk/*
jobs:
check_minimal_schema:
runs-on: ubuntu-latest
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.23.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