Skip to content

Update module github.com/pulumi/pulumi/pkg/v3 to v3.143.0 (#216) #323

Update module github.com/pulumi/pulumi/pkg/v3 to v3.143.0 (#216)

Update module github.com/pulumi/pulumi/pkg/v3 to v3.143.0 (#216) #323

Workflow file for this run

on:
push:
branches:
- main
pull_request:
branches:
- main
env:
GOLANG_CI_LINT_VERSION: v1.54.2
GO_VERSION: 1.21.x
jobs:
lint-and-test:
runs-on: ubuntu-latest
steps:
- name: Checkout Repo
uses: actions/checkout@v4
- name: Unshallow clone for tags
run: git fetch --prune --unshallow --tags
- name: Install Go
uses: actions/setup-go@v5
with:
go-version: ${{ env.GO_VERSION }}
- name: Lint
run: |
curl -sSfL https://raw.githubusercontent.com/golangci/golangci-lint/master/install.sh | sh -s -- -b $(go env GOPATH)/bin $GOLANG_CI_LINT_VERSION
make lint
- name: Test
run: make test