github: test workflow

This commit is contained in:
nkanaev 2025-03-12 22:15:18 +00:00
parent b8afa82a81
commit 73fd637b23

25
.github/workflows/test.yml vendored Normal file
View File

@ -0,0 +1,25 @@
name: Go Test
on:
push:
branches:
- master
pull_request:
branches:
- '*'
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Set up Go
uses: actions/setup-go@v4
with:
go-version: '^1.18'
- name: Run tests
run: make test