Skip to content

chore: supplement signature comments #44

chore: supplement signature comments

chore: supplement signature comments #44

Workflow file for this run

# This workflow will build a golang project
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-go
name: Go
on:
push:
branches: ["**"]
pull_request:
branches: ["**"]
jobs:
test:
strategy:
matrix:
os:
- macos-latest
llgo: [e4218f90d7926d31c1ffae3965a4e36228d38fd2]
go: [1.24]
python: [3.12]
fail-fast: false
runs-on: ${{matrix.os}}
steps:
- uses: actions/checkout@v5
- name: Setup llpyg environment
uses: ./.github/actions/setup-llpyg
with:
go: ${{ matrix.go }}
llgo: ${{ matrix.llgo }}
python: ${{ matrix.python }}
- name: Test
if: ${{!startsWith(matrix.os, 'macos')}}
run: go test -v ./...
- name: Test with coverage
if: startsWith(matrix.os, 'macos')
run: go test -v -coverprofile="coverage.txt" -covermode=atomic ./...
- name: Upload coverage reports to Codecov
uses: codecov/codecov-action@v5
with:
token: ${{secrets.CODECOV_TOKEN}}
slug: goplus/llpyg