add micro-tests trigger
All checks were successful
lint / lint (pull_request) Successful in 44s
test / test (pull_request) Successful in 41s

Signed-off-by: Vasiliy Tolstov <v.tolstov@unistack.org>
This commit is contained in:
Василий Толстов 2024-12-10 16:46:40 +03:00
parent 9345dd075a
commit b71fc25328
3 changed files with 7 additions and 4 deletions

View File

@ -19,9 +19,10 @@ jobs:
- name: setup-go - name: setup-go
uses: actions/setup-go@v5 uses: actions/setup-go@v5
with: with:
cache-dependency-path: "**/*.sum"
go-version: 'stable' go-version: 'stable'
- name: deps - name: deps
run: go get -v -d ./... run: go get -v ./...
- name: lint - name: lint
uses: https://github.com/golangci/golangci-lint-action@v6 uses: https://github.com/golangci/golangci-lint-action@v6
with: with:

View File

@ -24,9 +24,10 @@ jobs:
- name: setup-go - name: setup-go
uses: actions/setup-go@v5 uses: actions/setup-go@v5
with: with:
cache-dependency-path: "**/*.sum"
go-version: 'stable' go-version: 'stable'
- name: deps - name: deps
run: go get -v -d ./... run: go get -v ./...
- name: test - name: test
env: env:
INTEGRATION_TESTS: yes INTEGRATION_TESTS: yes

View File

@ -31,14 +31,15 @@ jobs:
- name: setup-go - name: setup-go
uses: actions/setup-go@v5 uses: actions/setup-go@v5
with: with:
cache-dependency-path: "**/*.sum"
go-version: 'stable' go-version: 'stable'
- name: deps - name: deps
run: go get -v -d ./... run: go get -v ./...
- name: workflow - name: workflow
run: | run: |
cd ../ cd ../
go work init go work init
go work use * go work use $(ls | grep -v go)
- name: test - name: test
env: env:
INTEGRATION_TESTS: yes INTEGRATION_TESTS: yes