Skip to content

test: add iterm test (#14) #2

test: add iterm test (#14)

test: add iterm test (#14) #2

Workflow file for this run

name: Main branch CI
on:
push:
branches:
- main
jobs:
golang-coverage-check:
runs-on: ubuntu-latest
timeout-minutes: 10
steps:
- uses: actions/checkout@v4
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version-file: go.mod
cache-dependency-path: go.sum
- name: Run go test
id: golang-test
run: |
go test -race -coverprofile=coverage.txt -covermode=atomic -p=5 ./...
- name: Upload coverage to Codecov
uses: codecov/codecov-action@7f8b4b4bde536c465e797be725718b88c5d95e0e # v5.1.1
with:
token: ${{ secrets.CODECOV_TOKEN }}