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
Showing only changes of commit a7a3724319 - Show all commits

View File

@ -17,22 +17,17 @@ jobs:
uses: actions/checkout@v3
- name: deps
run: go get -v -t -d ./...
- 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
- 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.