Skip to content
This repository has been archived by the owner on Aug 16, 2024. It is now read-only.

chore: archive notice in readme #21

chore: archive notice in readme

chore: archive notice in readme #21

Workflow file for this run

name: Test
on:
pull_request:
push:
branches:
- 'master'
release:
types: [ published ]
jobs:
go-test:
name: Run Go test
runs-on: ubuntu-latest
permissions:
contents: read
steps:
- name: Checkout repository
uses: actions/checkout@v3
- name: Install Go
uses: ./.github/actions/setup-go
- name: Run Go tests with coverage
run: |
go test -race -coverprofile=coverage.out -covermode=atomic ./...
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v3
with:
token: ${{ secrets.CODECOV_TOKEN }}