2024-12-07 02:37:12 +07:00
|
|
|
name: test
|
|
|
|
|
2024-12-06 19:05:27 +03:00
|
|
|
on:
|
|
|
|
pull_request:
|
2024-12-06 23:11:32 +03:00
|
|
|
types: [opened, reopened, synchronize]
|
2024-12-06 19:05:27 +03:00
|
|
|
branches:
|
|
|
|
- master
|
|
|
|
- v3
|
|
|
|
- v4
|
2024-12-07 02:37:12 +07:00
|
|
|
push:
|
|
|
|
branches:
|
|
|
|
- master
|
|
|
|
- v3
|
|
|
|
- v4
|
|
|
|
|
2024-12-06 19:05:27 +03:00
|
|
|
jobs:
|
|
|
|
test:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
2024-12-10 17:39:36 +03:00
|
|
|
- name: checkout code
|
2024-12-10 00:56:52 +03:00
|
|
|
uses: actions/checkout@v4
|
2024-12-10 01:38:30 +03:00
|
|
|
with:
|
|
|
|
filter: 'blob:none'
|
2024-12-10 17:39:36 +03:00
|
|
|
- name: setup go
|
2024-12-06 19:05:27 +03:00
|
|
|
uses: actions/setup-go@v5
|
|
|
|
with:
|
2024-12-10 16:46:40 +03:00
|
|
|
cache-dependency-path: "**/*.sum"
|
2024-12-06 19:05:27 +03:00
|
|
|
go-version: 'stable'
|
2024-12-10 17:39:36 +03:00
|
|
|
- name: setup deps
|
2024-12-10 16:46:40 +03:00
|
|
|
run: go get -v ./...
|
2024-12-10 17:39:36 +03:00
|
|
|
- name: run test
|
2024-12-06 19:05:27 +03:00
|
|
|
env:
|
|
|
|
INTEGRATION_TESTS: yes
|
|
|
|
run: go test -mod readonly -v ./...
|