Skip to content

fix: blocks body buffer reader once the body buffer has been reset. #1898

fix: blocks body buffer reader once the body buffer has been reset.

fix: blocks body buffer reader once the body buffer has been reset. #1898

Workflow file for this run

name: Tinygo tests
on:
push:
branches:
- main
paths-ignore:
- "**/*.md"
- "LICENSE"
pull_request:
branches:
- main
paths-ignore:
- "**/*.md"
- "LICENSE"
jobs:
test:
strategy:
matrix:
go-version: [1.19.x]
os: [ubuntu-latest]
runs-on: ${{ matrix.os }}
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Install Go
uses: actions/setup-go@v3
with:
go-version: ${{ matrix.go-version }}
cache: true
- name: setup tinygo
uses: acifani/setup-tinygo@v1
with:
tinygo-version: 0.27.0
- name: Cache TinyGo build
uses: actions/cache@v3
with:
path: |
~/.cache/tinygo
key: ${{ runner.os }}-tinygo-${{ hashFiles('**/go.sum') }}
restore-keys: |
${{ runner.os }}-tinygo-
- name: Tests
run: tinygo test ./...