feat: initialize BanForge with CI/CD pipeline and linting configuration
All checks were successful
CI.yml / build (push) Successful in 49s

This commit is contained in:
d3m0k1d
2026-01-11 20:33:56 +03:00
parent 577f7ef0b9
commit b3431d248b

View File

@@ -20,8 +20,11 @@ jobs:
cache: false cache: false
- name: Install deps - name: Install deps
run: go mod tidy run: go mod tidy
- name: Run linter - name: Golangci-lint
run: golangci-lint run ./... uses: golangci/golangci-lint-action@v9.2.0
with:
args: --timeout=5m
skip-cache: true
- name: Run tests - name: Run tests
run: go test ./... run: go test ./...
- name: Build - name: Build