Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
20 commits
Select commit Hold shift + click to select a range
1f49a2c
the '.gitignore' file has been changed | the 'release.yml' file has b…
noneandundefined Aug 9, 2025
8d96326
changed architecture git-auto-commit and worked in v3
noneandundefined Aug 9, 2025
af3bdef
the 'version.md' file has been changed
noneandundefined Aug 10, 2025
82abade
added new base parser and ahothers mini changes
noneandundefined Aug 10, 2025
af52802
Implemented pkg
noneandundefined Aug 10, 2025
0506f15
Updated infrastructure as code
noneandundefined Aug 10, 2025
6a67c39
Updated autocommit
noneandundefined Aug 10, 2025
dd971a9
Updated command-line tools
noneandundefined Aug 10, 2025
305aba0
Implemented test suite, updated test suite
noneandundefined Aug 10, 2025
726e0a3
Updated public reusable packages
noneandundefined Aug 10, 2025
5c36e82
Updated test suite
noneandundefined Aug 10, 2025
1d85ef1
added tests for golang implemented/modified/delete
noneandundefined Aug 12, 2025
14a45c0
[test] Implemented and refined test cases to ensure code quality
noneandundefined Aug 12, 2025
7b30f90
Updated public reusable packages
noneandundefined Aug 12, 2025
f085c05
[fix] Updated public reusable packages
noneandundefined Aug 12, 2025
efda7fc
added binary makefile building
noneandundefined Aug 12, 2025
cde1b25
[fix] Updated infrastructure as code
noneandundefined Aug 12, 2025
37fea84
[fix] Implemented build scripts, updated build scripts
noneandundefined Aug 12, 2025
cc4f8d7
[docs] Performed comprehensive updates and revisions to the documenta…
noneandundefined Aug 12, 2025
96df11b
[fix] Updated public reusable packages
noneandundefined Aug 12, 2025
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
106 changes: 53 additions & 53 deletions .github/workflows/go-check.yml
Original file line number Diff line number Diff line change
@@ -1,53 +1,53 @@
name: Static Go Check

on:
pull_request:
branches: [main]

jobs:
go_check:
runs-on: ubuntu-latest

steps:
- name: Clone repository
uses: actions/checkout@v3

- name: Install Go
uses: actions/setup-go@v4
with:
go-version: '1.23.0'

- name: Install dependencies
run: |
go install github.com/golangci/golangci-lint/cmd/golangci-lint@latest
go install golang.org/x/tools/cmd/goimports@latest

- name: Go mod tidy & download
run: |
go mod tidy
go mod download

- name: Check formatting (gofmt)
run: |
if [ -n "$(gofmt -l .)" ]; then
echo "Файлы не отформатированы. Запустите 'gofmt -w .'"
gofmt -l .
exit 1
fi

- name: Check imports (goimports)
run: |
if [ -n "$(goimports -l .)" ]; then
echo "Неверный импорт. Запустите 'goimports -w .'"
goimports -l .
exit 1
fi

- name: Lint (golangci-lint)
run: |
make lint

- name: Build binary
run: |
mkdir -p bin
make build
name: Static Go Check
on:
pull_request:
branches: [main]
jobs:
go_check:
runs-on: ubuntu-latest
steps:
- name: Clone repository
uses: actions/checkout@v3
- name: Install Go
uses: actions/setup-go@v4
with:
go-version: '1.23.0'
- name: Install dependencies
run: |
go install github.com/golangci/golangci-lint/cmd/golangci-lint@latest
go install golang.org/x/tools/cmd/goimports@latest
- name: Go mod tidy & download
run: |
go mod tidy
go mod download
- name: Check formatting (gofmt)
run: |
if [ -n "$(gofmt -l .)" ]; then
echo "Файлы не отформатированы. Запустите 'gofmt -w .'"
gofmt -l .
exit 1
fi
- name: Check imports (goimports)
run: |
if [ -n "$(goimports -l .)" ]; then
echo "Неверный импорт. Запустите 'goimports -w .'"
goimports -l .
exit 1
fi
- name: Lint (golangci-lint)
run: |
make lint
- name: Build binary
run: |
mkdir -p bin
make build
Loading
Loading