Skip to content

Merge pull request #25 from kentlallen/cpu-usage-fix #28

Merge pull request #25 from kentlallen/cpu-usage-fix

Merge pull request #25 from kentlallen/cpu-usage-fix #28

Workflow file for this run

name: Overseer
on: [push]
jobs:
tests:
strategy:
matrix:
os: [ubuntu-latest, macos-latest]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v3
- uses: actions/setup-go@v3
with:
go-version: '>=1.17.0'
- name: Run tests
run: |
go version
make test
- if: ${{ matrix.os == 'ubuntu-latest' }}
name: Run coverage
run: make coverage
- if: ${{ matrix.os == 'ubuntu-latest' }}
name: Publish coverage
uses: codecov/codecov-action@v2