Skip to content

chore(deps): bump github.com/containerd/containerd from 1.6.19 to 1.6.26 #150

chore(deps): bump github.com/containerd/containerd from 1.6.19 to 1.6.26

chore(deps): bump github.com/containerd/containerd from 1.6.19 to 1.6.26 #150

Workflow file for this run

name: Run Tests
on:
push:
branches:
- "**"
pull_request:
types:
- opened
- reopened
branches:
- "**"
jobs:
unittests:
name: Unit Tests
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Go
uses: actions/setup-go@v3
with:
go-version: 1.19
check-latest: true
cache: true
- name: Get dependencies
run: |
go install github.com/kyoh86/richgo@latest
go get -v -t -d ./...
- name: Run tests
id: tests
run: richgo test -v -race -cover -bench=. ./...
env:
IN_TRAVIS_CI: yes
RICHGO_FORCE_COLOR: 1