Skip to content

Bump github.com/pipe-cd/pipecd from 0.47.1 to 0.48.0 #159

Bump github.com/pipe-cd/pipecd from 0.47.1 to 0.48.0

Bump github.com/pipe-cd/pipecd from 0.47.1 to 0.48.0 #159

Workflow file for this run

name: lint-test
on:
push:
branches:
- main
tags:
- 'v*'
pull_request:
branches:
- main
jobs:
lint:
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@v5
with:
go-version-file: 'go.mod'
cache: true
- name: Install golangci-lint
run: go install github.com/golangci/golangci-lint/cmd/golangci-lint@latest
- name: Run golangci-lint
run: golangci-lint run ./...
test:
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@v5
with:
go-version-file: 'go.mod'
cache: true
- name: Run tests
run: make testacc