Skip to content

github-workflows: use newer actions for CI workflow #2

github-workflows: use newer actions for CI workflow

github-workflows: use newer actions for CI workflow #2

Workflow file for this run

name: CI
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Check out code
uses: actions/checkout@v5
- name: Set up Go
uses: actions/setup-go@v4
with:
go-version: 1.18
- name: Test
run: make test