Skip to content

deps(deps): bump microsoft/typescript-go from dedfbd9 to c9d2894 #41

deps(deps): bump microsoft/typescript-go from dedfbd9 to c9d2894

deps(deps): bump microsoft/typescript-go from dedfbd9 to c9d2894 #41

Workflow file for this run

name: Go Tests
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "**" ]
workflow_dispatch:
permissions:
contents: read
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version-file: go.mod
cache: true
- name: Go test with coverage
run: |
go test ./... -count=1 -covermode=atomic -coverpkg=./... -coverprofile=coverage.out
- name: Upload coverage reports to Codecov
uses: codecov/codecov-action@v5
with:
token: ${{ secrets.CODECOV_TOKEN }}
files: coverage.out
slug: buke/typescript-go-internal
flags: unittests
name: go-tests
fail_ci_if_error: false