support uint16/32, and tests added #75
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: tests | |
on: | |
push: | |
branches: [ "main" ] | |
pull_request: | |
branches: [ "main" ] | |
jobs: | |
build: | |
strategy: | |
matrix: | |
os: [ubuntu-latest, macos-latest] | |
go-version: ['stable', 'oldstable'] | |
runs-on: ${{ matrix.os }} | |
steps: | |
- name: Enable long paths on git checkouts | |
run: git config --global core.longpaths true | |
- uses: actions/checkout@v4 | |
with: | |
submodules: 'true' | |
lfs: 'true' | |
- name: Set up Go ${{ matrix.go-version }} | |
uses: actions/setup-go@v5 | |
with: | |
go-version: ${{ matrix.go-version }} | |
- name: Build | |
run: go build -v ./... | |
- name: Test with coverage | |
run: go test -v -coverprofile="coverage-${{ matrix.os }}-${{ matrix.go-version }}.txt" -coverpkg=./... ./... | |
- name: Codegen with coverage | |
env: | |
GOCOVERDIR: "${{ github.workspace }}/coverage" | |
run: | | |
mkdir coverage | |
go generate ./... | |
go tool covdata textfmt -i=coverage -o=coverage-sszgen-${{ matrix.os }}-${{ matrix.go-version }}.txt | |
- name: Upload coverage reports to Codecov | |
uses: codecov/[email protected] | |
with: | |
token: ${{ secrets.CODECOV_TOKEN }} |