Skip to content

first commit

first commit #2

Workflow file for this run

name: Testing
on:
push:
branches:
- "*"
tags:
- "*"
jobs:
build:
if: github.event.base_ref != 'refs/heads/master'
name: Testing
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Set up Go
uses: actions/setup-go@v2
with:
go-version: 1.21.0
- name: Unit tests
id: test-code
run: make test
- name: Upload coverage reports to Codecov
uses: codecov/codecov-action@v3
env:
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}