Skip to content

Commit a357be5

Browse files
committed
initial commit
0 parents  commit a357be5

File tree

11 files changed

+1004
-0
lines changed

11 files changed

+1004
-0
lines changed

.github/workflows/audit.yaml

+41
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,41 @@
1+
name: Audit
2+
3+
on:
4+
push:
5+
branches: [main]
6+
pull_request:
7+
branches: [main]
8+
9+
jobs:
10+
audit:
11+
strategy:
12+
matrix:
13+
os: [ubuntu-22.04]
14+
runs-on: ${{ matrix.os }}
15+
steps:
16+
- name: Checkout
17+
uses: actions/checkout@v4
18+
with:
19+
fetch-depth: 0
20+
21+
- name: Set up Go
22+
uses: actions/setup-go@v5
23+
with:
24+
go-version: 1.23
25+
26+
- name: Tidy
27+
run: go mod tidy --diff
28+
29+
- name: Verify dependencies
30+
run: go mod verify
31+
32+
- name: Lint
33+
uses: golangci/golangci-lint-action@v6
34+
with:
35+
version: v1.63.4
36+
37+
- name: Tests
38+
run: go test -race ./...
39+
40+
- name: Build
41+
run: go build -v -o ./bin/euivator ./cmd/euivator

.gitignore

+22
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
# Binaries for programs and plugins
2+
*.exe
3+
*.exe~
4+
*.dll
5+
*.so
6+
*.dylib
7+
8+
# Test binary, built with `go test -c`
9+
*.test
10+
11+
# Output of the go coverage tool, specifically when used with LiteIDE
12+
*.out
13+
14+
# Go workspace file
15+
go.work
16+
go.work.sum
17+
18+
# env file
19+
.env
20+
21+
dist/
22+
bin/

0 commit comments

Comments
 (0)