Skip to content

Merge pull request #60 from anchore/warn-log-no-details #144

Merge pull request #60 from anchore/warn-log-no-details

Merge pull request #60 from anchore/warn-log-no-details #144

Workflow file for this run

name: "Tests"
on:
workflow_dispatch:
push:
jobs:
Unit-Tests:
strategy:
matrix:
# test the lower bounds of support, and the latest available
go-version: ["1.20.x"]
platform: [ubuntu-latest]
runs-on: ${{ matrix.platform }}
steps:
- uses: actions/setup-go@v2
with:
go-version: ${{ matrix.go-version }}
- uses: actions/checkout@v3
- name: Restore bootstrap cache
id: bootstrap-cache
uses: actions/[email protected]
with:
path: |
~/go/pkg/mod
${{ github.workspace }}/.tmp
key: ${{ runner.os }}-go-${{ matrix.go-version }}-${{ hashFiles('**/go.sum') }}-${{ hashFiles('Makefile') }}
restore-keys: |
${{ runner.os }}-go-${{ matrix.go-version }}-${{ hashFiles('**/go.sum') }}-
${{ runner.os }}-go-${{ matrix.go-version }}-
- name: Bootstrap project dependencies
if: steps.bootstrap-cache.outputs.cache-hit != 'true'
run: make bootstrap
- name: Run unit tests
run: make unit