Bump github.com/opencontainers/runc from 1.1.5 to 1.1.12 #86
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
--- | |
name: Go build | |
on: | |
- push | |
- pull_request | |
jobs: | |
build: | |
name: "Go build" | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Set up Go | |
uses: actions/setup-go@v2 | |
with: | |
go-version: 1.21 | |
- name: Install non-Go deps | |
run: | | |
sudo apt update | |
sudo apt -yq install redis-server | |
- name: Get and build deps | |
run: go get -v -t ./... | |
- name: Build executable | |
run: go build -v -o fever cmd/fever/main.go | |
- name: Run tests | |
run: go test -v ./... |