Skip to content

fix: update webvpn url key (#1) #5

fix: update webvpn url key (#1)

fix: update webvpn url key (#1) #5

Workflow file for this run

name: CI
on:
push:
branches:
- master
pull_request:
branches:
- master
jobs:
test:
runs-on: ubuntu-20.04
strategy:
matrix:
go: [ '1.16', '1.17' ]
steps:
- uses: actions/checkout@v2
- uses: actions/setup-go@v2
with:
go-version: ${{ matrix.go }}
- run: go test -race -coverprofile="coverage.txt" -covermode=atomic -args "${{ secrets.TEST_USER }}" "${{ secrets.TEST_PASS }}"
- uses: codecov/codecov-action@v1
with:
token: ${{ secrets.CODECOV_TOKEN }}
file: ./coverage.txt