Skip to content
This repository was archived by the owner on Nov 22, 2025. It is now read-only.

Merge pull request #2 from bibenga/feature/fix-module-name #8

Merge pull request #2 from bibenga/feature/fix-module-name

Merge pull request #2 from bibenga/feature/fix-module-name #8

Workflow file for this run

# This workflow will build a golang project
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-go
name: Go
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
go-version: [ '1.24', '1.25' ]
steps:
- uses: actions/checkout@v4
- name: Set up Go ${{ matrix.go-version }}
uses: actions/setup-go@v4
with:
go-version: ${{ matrix.go-version }} # укажите вашу версию Go
- name: Install dependencies
run: go mod tidy
- name: Run tests
run: go test ./tests -v