Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Try BUSL check #2946

Closed
wants to merge 1 commit into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
34 changes: 34 additions & 0 deletions .github/workflows/run-acceptance-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -269,6 +269,7 @@ jobs:
! cancelled()
needs:
- test
- license_check
- go_test_shim
runs-on: ubuntu-latest
steps:
Expand Down Expand Up @@ -399,6 +400,39 @@ jobs:
- dotnet
- go
- java
license_check:
name: License Check
runs-on: ubuntu-latest
steps:
- name: Checkout Repo
uses: actions/checkout@v3
with:
ref: ${{ env.PR_COMMIT_SHA }}
- name: Unshallow clone for tags
run: git fetch --prune --unshallow --tags
- name: Install Go
uses: actions/setup-go@v4
with:
cache-dependency-path: |
sdk/go.sum
go-version: 1.21.x
- run: make upstream
- uses: pulumi/license-check-action@main
with:
module-path: provider
ignore-modules: >-
golang.org,
github.com/cloudflare/circl,
github.com/modern-go/reflect2,
github.com/segmentio/asm,
github.com/klauspost/compress,
github.com/golang,
github.com/pulumi,
github.com/pjbgf/sha1cd,
github.com/pierrec/lz4,
github.com/aead/chacha20,
github.com/jmespath/go-jmespath,
github.com/mattn/go-localereader
go_test_shim:
name: Run test of provider shim
runs-on: ubuntu-latest
Expand Down
Loading