[v3] rename .gitea to .github (#207)
Some checks failed
coverage / build (push) Failing after 50s
test / test (push) Has been cancelled

* rename .gitea to .github
* attempt to fix lint/test job
* attempt to fix coverage job
This commit is contained in:
2025-04-27 15:32:44 +05:00
committed by GitHub
parent c55e212270
commit 7c613072df
12 changed files with 86 additions and 86 deletions

34
.github/workflows/job_test.yml vendored Normal file
View File

@@ -0,0 +1,34 @@
name: test
on:
pull_request:
types: [opened, reopened, synchronize]
branches:
- master
- v3
- v4
push:
branches:
- master
- v3
- v4
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: checkout code
uses: actions/checkout@v4
with:
filter: 'blob:none'
- name: setup go
uses: actions/setup-go@v5
with:
cache-dependency-path: "**/*.sum"
go-version: 'stable'
- name: setup deps
run: go get -v ./...
- name: run test
env:
INTEGRATION_TESTS: yes
run: go test -mod readonly -v ./...