🌋 api, cred, service: log bugs at error level #960
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: Test | |
| on: | |
| push: | |
| branches: | |
| - '**' | |
| paths-ignore: | |
| - 'README.md' | |
| - 'LICENSE' | |
| - 'docs/**' | |
| pull_request: | |
| paths-ignore: | |
| - 'README.md' | |
| - 'LICENSE' | |
| - 'docs/**' | |
| jobs: | |
| test: | |
| name: Test | |
| strategy: | |
| matrix: | |
| os: [ubuntu-latest, windows-latest, macos-latest] | |
| fail-fast: false | |
| runs-on: ${{ matrix.os }} | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Setup Go | |
| uses: actions/setup-go@v5 | |
| with: | |
| go-version: stable | |
| - name: Build | |
| if: matrix.os != 'windows-latest' | |
| run: | | |
| go build -v -trimpath -ldflags '-s -w' ./cmd/shadowsocks-go | |
| go build -v -trimpath -ldflags '-s -w' ./cmd/shadowsocks-go-domain-set-converter | |
| - name: Build with tag tfogo_checklinkname0 | |
| if: matrix.os == 'windows-latest' | |
| run: | | |
| go build -v -trimpath -ldflags '-s -w -checklinkname=0' -tags tfogo_checklinkname0 ./cmd/shadowsocks-go | |
| go build -v -trimpath -ldflags '-s -w -checklinkname=0' -tags tfogo_checklinkname0 ./cmd/shadowsocks-go-domain-set-converter | |
| - name: Test | |
| run: go test -v ./... | |
| - name: Test with tag tfogo_checklinkname0 | |
| if: matrix.os == 'windows-latest' | |
| run: go test -v -ldflags '-checklinkname=0' -tags tfogo_checklinkname0 ./... | |
| - name: Upload Binaries | |
| uses: actions/upload-artifact@v4 | |
| with: | |
| name: shadowsocks-go-${{ github.sha }}-${{ matrix.os }}-${{ runner.arch }} | |
| path: shadowsocks-go* |