Skip to content

ci: automatically clean out old containers #70

ci: automatically clean out old containers

ci: automatically clean out old containers #70

Workflow file for this run

name: CI
on: [push, pull_request]
jobs:
build:
runs-on: "ubuntu-22.04"
steps:
- uses: actions/checkout@v2
- name: Set up Go
uses: actions/setup-go@v2
with:
go-version: 1.18
- name: Install dependencies
run: ./scripts/install-dependencies.sh
- name: Build
run: go build -v ./...
- name: Test
run: LD_LIBRARY_PATH="/usr/local/lib/" go test -v ./...