Skip to content

Merge pull request #6 from tech-thinker/fix-github-actions #21

Merge pull request #6 from tech-thinker/fix-github-actions

Merge pull request #6 from tech-thinker/fix-github-actions #21

Workflow file for this run

name: Go Tests
on:
push:
branches: ["main", "develop"]
pull_request:
branches: ["*"]
jobs:
tests:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Go
uses: actions/setup-go@v4
with:
go-version: 1.22
- name: Build
run: make build
- name: Test
run: make test
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v2