Skip to content

refactor(abci): Batch signing and signature verification refactor #1031

refactor(abci): Batch signing and signature verification refactor

refactor(abci): Batch signing and signature verification refactor #1031

Workflow file for this run

name: Tests
on:
pull_request:
env:
GO_VERSION: "1.21.0"
permissions:
contents: read
repository-projects: read
packages: read
concurrency:
group: ci-${{ github.ref }}-tests
cancel-in-progress: true
jobs:
unit-tests:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@v5
with:
go-version: ${{ env.GO_VERSION }}
check-latest: true
cache: true
cache-dependency-path: go.sum
- name: Test & coverage report creation
run: make test-unit-cover
- uses: actions/upload-artifact@v4
with:
name: "${{ github.sha }}-${{ matrix.part }}-coverage"
path: ./${{ matrix.part }}profile.out
e2e-tests:
runs-on: ubuntu-latest
timeout-minutes: 10
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@v5
with:
go-version: ${{ env.GO_VERSION }}
- name: Test e2e
run: |
make test-e2e