chore: import upstream snapshot with attribution

This commit is contained in:
wehub-resource-sync
2026-07-13 13:14:29 +08:00
commit b7d888a71b
32059 changed files with 305734 additions and 0 deletions
+31
View File
@@ -0,0 +1,31 @@
name: Check
on:
push:
branches:
- master
pull_request:
branches:
- master
workflow_dispatch:
jobs:
check:
runs-on: ubuntu-latest
steps:
- name: Set up Go
uses: actions/setup-go@v4
with:
go-version: 1.18
- name: Check out code
uses: actions/checkout@v3
- name: Run check
run: make check
- name: Unit Test
run: make test
- name: Lint
run: make lint