chore: fix piplines

This commit is contained in:
d3m0k1d
2026-02-19 19:17:14 +03:00
parent 80fd7e9192
commit c1d8faecf7
2 changed files with 60 additions and 0 deletions

View File

@@ -0,0 +1,24 @@
name: ci.yml
on:
push:
branches:
- master
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v6
- name: Go setup
uses: actions/setup-go@v6
with:
go-version: '1.25.7'
- name: Install deps
run: go mod tidy
- name: Run tests
run: go test ./...
- name: Build
run: go build ./...