New yml #366

Closed
atolstikhin wants to merge 4 commits from (deleted):v3 into v3
2 changed files with 36 additions and 17 deletions

View File

@ -1,10 +1,13 @@
name: pipeline name: lint
on: on:
pull_request: pull_request:
types: [opened, reopened, closed]
branches: branches:
- master - master
- v3 - v3
- v4 - v4
jobs: jobs:
lint: lint:
name: lint name: lint
@ -22,19 +25,3 @@ jobs:
uses: https://github.com/golangci/golangci-lint-action@v6 uses: https://github.com/golangci/golangci-lint-action@v6
with: with:
version: v1.62.2 version: v1.62.2
test:
name: test
runs-on: ubuntu-latest
steps:
- name: setup-go
uses: actions/setup-go@v5
with:
go-version: 'stable'
- name: checkout
uses: actions/checkout@v3
- name: deps
run: go get -v -d ./...
- name: test
env:
INTEGRATION_TESTS: yes
run: go test -mod readonly -v ./...

View File

@ -0,0 +1,32 @@
name: test
on:
push:
branches:
- master
- v3
- v4
pull_request:
types: [opened, reopened, closed]
branches:
- master
- v3
- v4
jobs:
test:
name: test
runs-on: ubuntu-latest
steps:
- name: setup-go
uses: actions/setup-go@v5
with:
go-version: 'stable'
- name: checkout
uses: actions/checkout@v3
- name: deps
run: go get -v -d ./...
- name: test
env:
INTEGRATION_TESTS: yes
run: go test -mod readonly -v ./...