Skip to content

build(deps): bump github.com/sagernet/sing from 0.7.18 to 0.8.0 #185

build(deps): bump github.com/sagernet/sing from 0.7.18 to 0.8.0

build(deps): bump github.com/sagernet/sing from 0.7.18 to 0.8.0 #185

Workflow file for this run

name: Tests
concurrency:
group: "tests-${{ github.ref }}"
cancel-in-progress: true
on:
push:
branches:
- main
- dev
pull_request:
workflow_dispatch:
jobs:
lint:
name: Lint
runs-on: ubuntu-latest
steps:
- name: Clone
uses: actions/checkout@v4
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version: 1.25.2
- name: golangci-lint
uses: golangci/golangci-lint-action@v8
with:
version: v2.5
tests:
name: Tests
runs-on: ubuntu-latest
steps:
- name: Clone
uses: actions/checkout@v4
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version: 1.25.2
- name: Tests
run: |
make tests
- name: Upload coverage reports to Codecov
uses: codecov/codecov-action@v5
with:
token: ${{ secrets.CODECOV_TOKEN }}
slug: cnlangzi/proxyclient
files: ./coverage.txt
flags: Tests
verbose: true