Skip to content

docs: add link to ts declaration file #6

docs: add link to ts declaration file

docs: add link to ts declaration file #6

Workflow file for this run

name: test
on:
pull_request:
workflow_dispatch:
push:
paths-ignore:
- "docs/**"
- README.md
- "releases/**"
jobs:
test:
name: Test
strategy:
matrix:
platform:
- ubuntu-latest
- macos-latest
- windows-latest
runs-on: ${{matrix.platform}}
steps:
- name: Install Go
uses: actions/setup-go@v4
with:
go-version: "1.21"
- name: Checkout code
uses: actions/checkout@v4
- name: Test
uses: magefile/mage-action@v3
with:
version: latest
args: -v test
- name: Upload Coverage
if: ${{ matrix.platform == 'ubuntu-latest' && github.ref_name == 'master' }}
uses: codecov/codecov-action@v3
with:
directory: build
- name: Generate Go Report Card
if: ${{ matrix.platform == 'ubuntu-latest' && github.ref_name == 'master' }}
uses: creekorful/[email protected]