New yml
This commit is contained in:
parent
9704ef2e5e
commit
db0a947ddb
26
.gitea/workflows/job_lint.yml
Normal file
26
.gitea/workflows/job_lint.yml
Normal file
@ -0,0 +1,26 @@
|
|||||||
|
name: lint
|
||||||
|
|
||||||
|
on:
|
||||||
|
pull_request:
|
||||||
|
branches:
|
||||||
|
- master
|
||||||
|
- v3
|
||||||
|
- v4
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
lint:
|
||||||
|
name: lint
|
||||||
|
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: lint
|
||||||
|
uses: https://github.com/golangci/golangci-lint-action@v6
|
||||||
|
with:
|
||||||
|
version: v1.62.2
|
26
.gitea/workflows/job_test.yml
Normal file
26
.gitea/workflows/job_test.yml
Normal file
@ -0,0 +1,26 @@
|
|||||||
|
name: test
|
||||||
|
|
||||||
|
on:
|
||||||
|
pull_request:
|
||||||
|
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 ./...
|
@ -1,40 +1,42 @@
|
|||||||
name: pipeline
|
# name: pipeline
|
||||||
on:
|
|
||||||
pull_request:
|
# on:
|
||||||
branches:
|
# pull_request:
|
||||||
- master
|
# branches:
|
||||||
- v3
|
# - master
|
||||||
- v4
|
# - v3
|
||||||
jobs:
|
# - v4
|
||||||
lint:
|
|
||||||
name: lint
|
# jobs:
|
||||||
runs-on: ubuntu-latest
|
# lint:
|
||||||
steps:
|
# name: lint
|
||||||
- name: setup-go
|
# runs-on: ubuntu-latest
|
||||||
uses: actions/setup-go@v5
|
# steps:
|
||||||
with:
|
# - name: setup-go
|
||||||
go-version: 'stable'
|
# uses: actions/setup-go@v5
|
||||||
- name: checkout
|
# with:
|
||||||
uses: actions/checkout@v3
|
# go-version: 'stable'
|
||||||
- name: deps
|
# - name: checkout
|
||||||
run: go get -v -d ./...
|
# uses: actions/checkout@v3
|
||||||
- name: lint
|
# - name: deps
|
||||||
uses: https://github.com/golangci/golangci-lint-action@v6
|
# run: go get -v -d ./...
|
||||||
with:
|
# - name: lint
|
||||||
version: v1.62.2
|
# uses: https://github.com/golangci/golangci-lint-action@v6
|
||||||
test:
|
# with:
|
||||||
name: test
|
# version: v1.62.2
|
||||||
runs-on: ubuntu-latest
|
# test:
|
||||||
steps:
|
# name: test
|
||||||
- name: setup-go
|
# runs-on: ubuntu-latest
|
||||||
uses: actions/setup-go@v5
|
# steps:
|
||||||
with:
|
# - name: setup-go
|
||||||
go-version: 'stable'
|
# uses: actions/setup-go@v5
|
||||||
- name: checkout
|
# with:
|
||||||
uses: actions/checkout@v3
|
# go-version: 'stable'
|
||||||
- name: deps
|
# - name: checkout
|
||||||
run: go get -v -d ./...
|
# uses: actions/checkout@v3
|
||||||
- name: test
|
# - name: deps
|
||||||
env:
|
# run: go get -v -d ./...
|
||||||
INTEGRATION_TESTS: yes
|
# - name: test
|
||||||
run: go test -mod readonly -v ./...
|
# env:
|
||||||
|
# INTEGRATION_TESTS: yes
|
||||||
|
# run: go test -mod readonly -v ./...
|
||||||
|
Loading…
x
Reference in New Issue
Block a user