Skip to content

Fix header levels in README #75

Fix header levels in README

Fix header levels in README #75

Workflow file for this run

name: CI
on: [push, pull_request]
jobs:
test:
runs-on: macos-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@v4
- run: go test -v ./...
build:
strategy:
matrix:
arch:
- amd64
- arm64
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@v4
with:
go-version: "1.20"
- run: go build -o bin/${{ matrix.arch }}/ ./cmd/containerd-shim-rund-v1.go
env:
GOOS: darwin
GOARCH: ${{ matrix.arch }}
- uses: actions/upload-artifact@v3
with:
name: ${{ matrix.arch }}
path: bin/*