Skip to content

Added tests for BackoffPolicy (#7) #8

Added tests for BackoffPolicy (#7)

Added tests for BackoffPolicy (#7) #8

Workflow file for this run

name: Test and Coverage
on:
push:
branches: [ develop, staging, main ]
pull_request:
branches: [ develop, staging, main ]
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version: '1.23'
- name: Install dependencies
run: go get .
- name: Build and Test
run: |
go build -v ./...
go test -v -coverprofile=coverage.txt ./...
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v5
with:
token: ${{ secrets.CODECOV_TOKEN }}
slug: KengoWada/taskqueue