Skip to content

Bump github.com/pipe-cd/pipecd from 0.49.4 to 0.50.0 #230

Bump github.com/pipe-cd/pipecd from 0.49.4 to 0.50.0

Bump github.com/pipe-cd/pipecd from 0.49.4 to 0.50.0 #230

Workflow file for this run

name: lint-test
on:
push:
branches:
- main
tags:
- 'v*'
pull_request:
branches:
- main
jobs:
lint:
runs-on: ubuntu-24.04
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@v5
with:
go-version: 'stable'
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-24.04
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@v5
with:
go-version: 'stable'
cache: true
- name: Run tests
run: make testacc