Skip to content

separate sdk workflow #62

separate sdk workflow

separate sdk workflow #62

Workflow file for this run

name: test
on:
push:
branches:
- "**"
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Install Go
uses: actions/setup-go@v5
with:
go-version: 1.22.x
- name: Install pulumictl
uses: jaxxstorm/[email protected]
with:
repo: pulumi/pulumictl
- name: Checkout Repo
uses: actions/checkout@v2
- name: Unshallow clone for tags
run: git fetch --prune --unshallow --tags
- run: make provider
- run: make test
- run: make schema && git diff --exit-code -- provider/cmd/pulumi-resource-defang/schema.json
- name: golangci-lint
uses: golangci/golangci-lint-action@v6
with:
version: v1.64
args: --timeout=5m --config=.golangci.yaml provider