This repository was archived by the owner on Mar 24, 2026. It is now read-only.
File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1+ name : CI
2+
3+ on :
4+ push :
5+ branches : [ main ]
6+ pull_request :
7+ branches : [ main ]
8+
9+ jobs :
10+ build :
11+ name : Build and Test
12+ runs-on : ubuntu-latest
13+
14+ steps :
15+ - name : Checkout code
16+ uses : actions/checkout@v4
17+
18+ - name : Set up Go
19+ uses : actions/setup-go@v5
20+ with :
21+ go-version : ' 1.22'
22+ cache : true
23+
24+ - name : Build
25+ run : make build
26+
27+ - name : Run Tests
28+ run : make test
29+
30+ - name : Run Benchmarks
31+ run : go test -v -bench=. ./internal/processor/...
Original file line number Diff line number Diff line change 44
55[ ![ CI] ( https://github.com/ESousa97/go-file-processor/actions/workflows/ci.yml/badge.svg )] ( https://github.com/ESousa97/go-file-processor/actions )
66[ ![ Go Report Card] ( https://goreportcard.com/badge/github.com/ESousa97/go-file-processor )] ( https://goreportcard.com/report/github.com/ESousa97/go-file-processor )
7+ [ ![ CodeFactor] ( https://www.codefactor.io/repository/github/ESousa97/go-file-processor/badge )] ( https://www.codefactor.io/repository/github/ESousa97/go-file-processor )
78[ ![ Go Reference] ( https://pkg.go.dev/badge/github.com/ESousa97/go-file-processor.svg )] ( https://pkg.go.dev/github.com/ESousa97/go-file-processor )
8- [ ![ License] ( https://img.shields.io/github/license/ESousa97/go-file-processor )] ( https://github.com/ESousa97/go-file-processor/blob/main/LICENSE )
9+ [ ![ License: MIT ] ( https://img.shields.io/badge/License-MIT-yellow.svg )] ( https://opensource.org/licenses/MIT )
910[ ![ Go Version] ( https://img.shields.io/github/go-mod/go-version/ESousa97/go-file-processor )] ( https://github.com/ESousa97/go-file-processor )
1011[ ![ Last Commit] ( https://img.shields.io/github/last-commit/ESousa97/go-file-processor )] ( https://github.com/ESousa97/go-file-processor/commits/main )
1112
You can’t perform that action at this time.
0 commit comments