Skip to content

version v0.27.4

version v0.27.4 #62

Workflow file for this run

name: Go
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
env:
BIN: ${{ github.workspace }}/bin
TMP: ${{ runner.temp }}

Check failure on line 11 in .github/workflows/go.yml

View workflow run for this annotation

GitHub Actions / Go

Invalid workflow file

The workflow is not valid. .github/workflows/go.yml (Line: 11, Col: 8): Unrecognized named-value: 'runner'. Located at position 1 within expression: runner.temp
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up OS
run: |
sudo apt update -y
sudo apt install -y qemu-utils
- name: Set up Go
uses: actions/setup-go@v3
with:
go-version: "1.22"
- name: Tools
run: make tools BIN=${{ env.BIN }} TMP=${{ runner.temp }}
- name: Build
run: go build -v -race ./...
- name: Test
run: go test -exec sudo -v -race ./...