Skip to content

Commit

Permalink
Update CI Environment
Browse files Browse the repository at this point in the history
  • Loading branch information
Jisin0 committed Jun 1, 2024
1 parent 4b53357 commit cc8a04b
Showing 1 changed file with 23 additions and 4 deletions.
27 changes: 23 additions & 4 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,23 @@
- name: Upload coverage reports to Codecov
uses: codecov/codecov-action@v4.0.1
with:
token: ${{ secrets.CODECOV_TOKEN }}
name: Test and coverage

on: [push, pull_request]

env:
OMDB_API_KEY: OMDB_API_KEY: ${{ secrets.OMDB_API_KEY }}

jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@v5
with:
go-version: 'stable'
- name: Gather dependencies
run: go mod download
- name: Run coverage
run: go test -race -coverprofile=coverage.txt -covermode=atomic ./...
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v4
with:
token: ${{ secrets.CODECOV_TOKEN }}

0 comments on commit cc8a04b

Please sign in to comment.