Skip to content

feat: change cron package #34

feat: change cron package

feat: change cron package #34

Workflow file for this run

name: Tests
on:
push:
branches:
- master
pull_request:
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
go:
- 1.21.x
name: Test with Go v${{ matrix.go }}
steps:
- uses: actions/checkout@v2
- name: Setup go
uses: actions/setup-go@v5
with:
go-version: ${{ matrix.go }}
cache: true
- name: Intall goveralls
run: |
go install github.com/mattn/goveralls@latest
- name: Test
run: |
make tests
- name: Send coverage
env:
COVERALLS_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: |
goveralls -coverprofile=coverage.out -service=github