Skip to content

Update build

Update build #3

Workflow file for this run

---
name: CI
on:
pull_request:
push:
jobs:
test_go:
name: Go tests
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
- name: Install Go
uses: actions/setup-go@0a12ed9d6a96ab950c8f026ed9f722fe0da7ef32 # v5.0.2
with:
go-version: ${{ matrix.go }}
run: go mod download

Check failure on line 18 in .github/workflows/ci.yml

View workflow run for this annotation

GitHub Actions / CI

Invalid workflow file

The workflow is not valid. .github/workflows/ci.yml (Line: 18, Col: 9): Unexpected value 'run' .github/workflows/ci.yml (Line: 19, Col: 9): 'run' is already defined
run: make
strategy:
matrix:
go:
- "1.22.x"
- "1.23.x"