Skip to content

.github: added main workflow #1

.github: added main workflow

.github: added main workflow #1

Workflow file for this run

name: replace
on: [push]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Setup Go
uses: actions/setup-go@v4
with:
go-version: '1.21.x'
- name: Install dependencies
run: make deps
- name: Make Build
run: make build
- name: Make Test Coverage
run: make coverage
- name: Upload coverage reports to Codecov
uses: codecov/codecov-action@v3
env:
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}