Skip to content

Workflow file for this run

name: test-golang

Check failure on line 1 in .github/workflows/test.yaml

View workflow run for this annotation

GitHub Actions / .github/workflows/test.yaml

Invalid workflow file

No steps defined in `steps` and no workflow called in `uses` for the following jobs: checkout_and_install_go
on: [push, pull_request]
jobs:
checkout_and_install_go:
runs-on: ubuntu-latest
test:
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Install Go
uses: actions/setup-go@v4
with:
go-version-file: go.mod
- name: Run tests
run: |
make test