8000 fix(v1.2.1): auth proxy added and rotation fixes · alpkeskin/rota@fc13d6f · GitHub
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content
7D0D

fix(v1.2.1): auth proxy added and rotation fixes #16

fix(v1.2.1): auth proxy added and rotation fixes

fix(v1.2.1): auth proxy added and rotation fixes #16

Workflow file for this run

name: Tests
on:
push:
jobs:
test:
name: Run Tests
runs-on: ubuntu-latest
steps:
- name: Check out code
uses: actions/checkout@v3
- name: Set up Go
uses: actions/setup-go@v4
with:
go-version: 1.23.4
- name: Install dependencies
run: go mod download
- name: Run unit tests
run: go test -v ./... -coverprofile=coverage.txt -covermode=atomic
- name: Upload coverage reports
uses: codecov/codecov-action@v3
with:
token: ${{ secrets.CODECOV_TOKEN }}
files: ./coverage.txt
flags: unittests
fail_ci_if_error: true
- name: Run linter
uses: golangci/golangci-lint-action@v6
with:
version: latest
0