Skip to content

Bump github.com/containerd/containerd from 1.7.9 to 1.7.11 #44

Bump github.com/containerd/containerd from 1.7.9 to 1.7.11

Bump github.com/containerd/containerd from 1.7.9 to 1.7.11 #44

Workflow file for this run

name: PR Check
on: [pull_request]
jobs:
build:
name: Build
runs-on: ubuntu-20.04
steps:
- name: Check out code
uses: actions/checkout@v3
- name: Build (Linux)
run: make build
test:
name: Test
runs-on: ubuntu-20.04
steps:
- name: Check out code
uses: actions/checkout@v3
- name: Unit Test
run: make test
lint:
name: Go Lint
runs-on: ubuntu-20.04
steps:
- name: Check out code
uses: actions/checkout@v3
- name: Golang Style and Lint Check
run: make check