[v4] rename .gitea to .github (#148)
Some checks failed
sync / sync (push) Has been cancelled

* rename .gitea to .github

* attempt to fix lint/test job
This commit is contained in:
2025-04-28 12:26:29 +05:00
committed by GitHub
parent fbe82a3905
commit 4d55c7b90a
3 changed files with 50 additions and 50 deletions

View File

@@ -12,18 +12,18 @@ jobs:
lint:
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 lint
uses: https://github.com/golangci/golangci-lint-action@v6
with:
version: 'latest'
- 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 lint
uses: golangci/golangci-lint-action@v6
with:
version: 'latest'