Skip to content

Commit

Permalink
Remove unused files, coverage and badge
Browse files Browse the repository at this point in the history
  • Loading branch information
dcadenas committed Dec 20, 2023
1 parent eaf277e commit 03e2a84
Show file tree
Hide file tree
Showing 5 changed files with 13 additions and 16 deletions.
8 changes: 0 additions & 8 deletions .buildkite/pipeline.yml

This file was deleted.

13 changes: 10 additions & 3 deletions .github/workflows/go.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,15 +14,22 @@ jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4.1.1

- name: Set up Go
uses: actions/setup-go@v4
uses: actions/setup-go@v5
with:
go-version: '1.20'

- name: Build
run: go build -v ./...

- name: Test
run: go test -v ./...
run: go test -v -coverprofile=coverage.out ./...

- name: Upload coverage to Codecov
uses: codecov/codecov-action@v3
with:
file: ./coverage.out
fail_ci_if_error: true

1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -21,3 +21,4 @@ _testmain.go

*.exe
*.test
coverage.out
5 changes: 0 additions & 5 deletions .travis.yml

This file was deleted.

2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
![CI](https://github.com/dcadenas/pagerank/actions/workflows/go.yml/badge.svg)

pagerank
========

Expand Down

0 comments on commit 03e2a84

Please sign in to comment.