Skip to content

Evidence CLI - evidence does not support basic auth #73

Evidence CLI - evidence does not support basic auth

Evidence CLI - evidence does not support basic auth #73

Workflow file for this run

name: Tests
on:
push:
branches:
- '**'
tags-ignore:
- '**'
pull_request:
# Ensures that only the latest commit is running for each PR at a time.
# Ignores this rule for push events.
concurrency:
group: ${{ github.event.pull_request.number || github.sha }}
cancel-in-progress: true
jobs:
unit-test:
name: ${{ matrix.os }}
runs-on: ${{ matrix.os }}-latest
strategy:
fail-fast: false
matrix:
os: [ ubuntu, windows, macos ]
steps:
- uses: actions/checkout@v4
- name: Setup Go with cache
uses: jfrog/.github/actions/install-go-with-cache@main
- name: Tests
run: go test -v -race -timeout 0 -cover ./...