Skip to content

Bare minimum pipeline for go. #1

Bare minimum pipeline for go.

Bare minimum pipeline for go. #1

Workflow file for this run

name: golang
on: [push, pull_request]
jobs:
tests:
runs-on: ubuntu-latest
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