Summary
Jobs
Test and Lint
test (1.22.x, ubuntu-latest, DEFAULT, 0)
test (1.22.x, ubuntu-latest, PULUMI_TF_BRIDGE_ACCURATE_BRIDGE_PREVIEW, 0)
test (1.22.x, macos-latest, DEFAULT, 0)
test (1.22.x, macos-latest, PULUMI_TF_BRIDGE_ACCURATE_BRIDGE_PREVIEW, 0)
test (1.22.x, windows-latest, DEFAULT, 0)
test (1.22.x, windows-latest, PULUMI_TF_BRIDGE_ACCURATE_BRIDGE_PREVIEW, 0)
test (1.23.x, ubuntu-latest, DEFAULT, 0)
test (1.23.x, ubuntu-latest, PULUMI_TF_BRIDGE_ACCURATE_BRIDGE_PREVIEW, 0)
test (1.23.x, macos-latest, DEFAULT, 0)
test (1.23.x, macos-latest, PULUMI_TF_BRIDGE_ACCURATE_BRIDGE_PREVIEW, 0)
test (1.23.x, windows-latest, DEFAULT, 0)
test (1.23.x, windows-latest, PULUMI_TF_BRIDGE_ACCURATE_BRIDGE_PREVIEW, 0)
test (ubuntu-latest, 1)
test (ubuntu-latest, 2)
test (ubuntu-latest, 3)
test (ubuntu-latest, 4)
test (ubuntu-latest, 5)
test (ubuntu-latest, 6)
test (ubuntu-latest, 7)
test (ubuntu-latest, 8)
test (ubuntu-latest, 9)
test (ubuntu-latest, 10)
test (ubuntu-latest, 11)
test (ubuntu-latest, 12)
test (ubuntu-latest, 13)
test (ubuntu-latest, 14)
lint
Ensure test assets build cleanly
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
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
name: Pull Request
on: [pull_request]
jobs:
build:
name: Test and Lint
uses: ./.github/workflows/build-and-test.yml
secrets: inherit
clean-files:
name: Ensure test assets build cleanly
runs-on: ubuntu-latest
steps:
- name: Install pulumi
uses: pulumi/actions@v5
with:
pulumi-version: dev
- name: Check out source code
uses: actions/checkout@master
- name: Install Go
uses: actions/setup-go@v5
with:
go-version: 1.23.x
cache-dependency-path: |
**/go.sum
- run: make -C pkg/pf build.testproviders
- name: Ensure Clean Repo
run: git diff-files --quiet
- name: Show Dirty Repo File Changes
if: failure()
run: git diff-files --patch
You can’t perform that action at this time.