bringing things to order in workflows and skip manual test #124

Merged
vtolstov merged 5 commits from atolstikhin/micro-store-redis:v3 into v3 2024-12-04 23:18:55 +03:00
2 changed files with 3 additions and 43 deletions
Showing only changes of commit 24cd139e3a - Show all commits

View File

@ -1,41 +0,0 @@
name: build
on:
push:
branches:
- master
- v3
jobs:
test:
name: test
runs-on: ubuntu-latest
steps:
- name: setup
uses: actions/setup-go@v5
with:
go-version: 'stable'
- name: checkout
uses: actions/checkout@v3
- name: deps
run: go get -v -t -d ./...
- name: test
env:
INTEGRATION_TESTS: yes
run: go test -mod readonly -v ./...
lint:
name: lint
runs-on: ubuntu-latest
steps:
- name: checkout
uses: actions/checkout@v3
- name: lint
uses: golangci/golangci-lint-action@v3.4.0
continue-on-error: true
with:
# Required: the version of golangci-lint is required and must be specified without patch version: we always use the latest patch version.
version: v1.30
# Optional: working directory, useful for monorepos
# working-directory: somedir
# Optional: golangci-lint command line arguments.
# args: --issues-exit-code=0
# Optional: show only new issues if it's a pull request. The default value is `false`.
# only-new-issues: true

View File

@ -4,6 +4,7 @@ on:
branches:
- master
- v3
- v4
jobs:
test:
name: test
@ -18,11 +19,11 @@ jobs:
- name: deps
run: go get -v -t -d ./...
- name: lint
uses: golangci/golangci-lint-action@v3.4.0
uses: golangci/golangci-lint-action@v6
continue-on-error: true
with:
# Required: the version of golangci-lint is required and must be specified without patch version: we always use the latest patch version.
version: v1.30
version: latest
- name: test
env:
INTEGRATION_TESTS: yes