Skip to content

Bump github.com/opencontainers/runc from 1.1.5 to 1.1.12 #101

Bump github.com/opencontainers/runc from 1.1.5 to 1.1.12

Bump github.com/opencontainers/runc from 1.1.5 to 1.1.12 #101

Workflow file for this run

name: Build and test Go
on: [pull_request]
jobs:
test:
strategy:
matrix:
go-version: [1.19.x, 1.20.x]
platform: [ubuntu-latest]
runs-on: ${{ matrix.platform }}
steps:
- name: Install Go
uses: actions/setup-go@v1
with:
go-version: ${{ matrix.go-version }}
- name: Checkout code
uses: actions/checkout@v2
- name: golangci-lint
uses: golangci/golangci-lint-action@v3
with:
version: v1.52.2
args: --timeout=5m
- name: Run go test
run: go test ./... -v
- name: Run go build
run: go build