Skip to content

feat: add command to clear auth token cache #399

feat: add command to clear auth token cache

feat: add command to clear auth token cache #399

Workflow file for this run

name: CI
on: [push, pull_request]
jobs:
build:
name: Build & Test
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, windows-latest]
steps:
- uses: actions/checkout@v2
- name: Set up go
uses: actions/setup-go@v1
with:
go-version: "1.18"
- run: go test -coverprofile=coverage.txt -covermode=atomic ./...
if: matrix.os == 'ubuntu-latest'
- run: go test
if: matrix.os == 'windows-latest'
- uses: codecov/codecov-action@v1
if: matrix.os == 'ubuntu-latest'