Skip to content

Merge pull request #33 from ProjectBARO/feat/grpc-update-fcm-token #14

Merge pull request #33 from ProjectBARO/feat/grpc-update-fcm-token

Merge pull request #33 from ProjectBARO/feat/grpc-update-fcm-token #14

Workflow file for this run

name: Test Coverage
on:
push:
branches: ["main"]
pull_request:
branches: ["main"]
jobs:
build:
name: Build
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Go
uses: actions/setup-go@v4
with:
go-version: "1.21"
- name: Test
run: go test -race -coverprofile=coverage.txt -covermode=atomic ./...
- name: Upload coverage reports to Codecov
uses: codecov/codecov-action@v3
with:
token: ${{ secrets.CODECOV_TOKEN }}
file: ./coverage.txt
flags: unittests
name: codecov-umbrella
fail_ci_if_error: true