-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #4 from algorandfoundation/ci/add-test
ci: adds a workflow for PR
- Loading branch information
Showing
9 changed files
with
125 additions
and
35 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,61 @@ | ||
name: Tests | ||
|
||
on: | ||
pull_request: | ||
types: [opened, reopened, synchronize] | ||
|
||
jobs: | ||
build: | ||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- uses: actions/checkout@v4 | ||
|
||
- name: Setup Go | ||
uses: actions/setup-go@v5 | ||
with: | ||
go-version: 1.22 | ||
|
||
- name: setup .algorun.yaml | ||
run: | | ||
touch .algorun.yaml | ||
echo 'server: http://localhost:8080' >> .algorun.yaml | ||
echo 'token: aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa' >> .algorun.yaml | ||
- name: Start Docker Compose | ||
run: docker compose up -d | ||
|
||
- name: Install dependencies | ||
run: go get . | ||
|
||
- name: Check formatting | ||
run: | | ||
fmt_files=$(gofmt -l .) | ||
if [ -n "$fmt_files" ]; then | ||
echo "Go code is not formatted. Please run 'go fmt'." | ||
gofmt -d . | ||
exit 1 | ||
fi | ||
- name: Tidy go.mod and go.sum | ||
run: | | ||
go mod tidy | ||
git diff --exit-code go.mod go.sum | ||
if [ $? -ne 0 ]; then | ||
echo "go.mod or go.sum is not tidy. Please run 'go mod tidy'." | ||
exit 1 | ||
fi | ||
- name: Run go vet | ||
run: go vet ./... | ||
|
||
- name: Build | ||
run: go build -o bin/algorun *.go | ||
|
||
- name: Test with the Go CLI | ||
run: go test ./... -coverprofile=./cover.out -covermode=atomic -coverpkg=./... | ||
|
||
- name: check test coverage | ||
uses: vladopajic/go-test-coverage@v2 | ||
with: | ||
config: ./.testcoverage.yaml |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
profile: cover.out | ||
|
||
# (optional; but recommended to set) | ||
# When specified reported file paths will not contain local prefix in the output | ||
local-prefix: "github.com/algorandfoundation/hack-tui" | ||
|
||
# Holds coverage thresholds percentages, values should be in range [0-100] | ||
threshold: | ||
# (optional; default 0) | ||
# The minimum coverage that each file should have | ||
file: 0 | ||
|
||
# (optional; default 0) | ||
# The minimum coverage that each package should have | ||
package: 0 | ||
|
||
# (optional; default 0) | ||
# The minimum total coverage project should have | ||
total: 0 | ||
|
||
# Holds regexp rules which will exclude matched files or packages | ||
# from coverage statistics | ||
exclude: | ||
# Exclude files or packages matching their paths | ||
paths: | ||
- api/if.go |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters