2024-09-05 12:01:05 +00:00
|
|
|
name: Test
|
|
|
|
|
|
|
|
|
|
on:
|
|
|
|
|
push:
|
|
|
|
|
branches:
|
|
|
|
|
- feature/*
|
|
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
|
build:
|
|
|
|
|
runs-on: docker
|
|
|
|
|
steps:
|
|
|
|
|
- name: Checkout
|
|
|
|
|
uses: actions/checkout@v2
|
|
|
|
|
- name: Setup Go
|
|
|
|
|
uses: actions/setup-go@v2
|
|
|
|
|
with:
|
2025-10-25 23:47:07 +00:00
|
|
|
go-version: 1.25
|
2024-09-05 12:01:05 +00:00
|
|
|
- name: Build
|
|
|
|
|
run: |
|
|
|
|
|
make test
|