test: skip inbound test on darwin

This commit is contained in:
wwqgtxx 2025-11-23 20:40:54 +08:00
parent 438d4138d6
commit d4d2c062a3

View File

@ -54,6 +54,11 @@ jobs:
cd $(go env GOROOT) cd $(go env GOROOT)
patch --verbose -p 1 < $GITHUB_WORKSPACE/.github/patch/go${{matrix.go-version}}.patch patch --verbose -p 1 < $GITHUB_WORKSPACE/.github/patch/go${{matrix.go-version}}.patch
- name: Remove inbound test for macOS
if: ${{ runner.os == 'macOS' }}
run: |
rm -rf listener/inbound/*_test.go
- name: Test - name: Test
run: go test ./... -v -count=1 run: go test ./... -v -count=1