Skip to content

Move ownership of underlying slice of SerializableBuffer to outside of Mem() #1712

Move ownership of underlying slice of SerializableBuffer to outside of Mem()

Move ownership of underlying slice of SerializableBuffer to outside of Mem() #1712

Workflow file for this run

# This Source Code Form is subject to the terms of the Mozilla Public
# License, v. 2.0. If a copy of the MPL was not distributed with this
# file, You can obtain one at http://mozilla.org/MPL/2.0/.
#
# Copyright (c) 2011-2020 ETH Zurich.
name: "Run 'go test'"
on:
push:
branches:
- master
pull_request: # run this workflow on every pull_request
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-go@v3
with:
go-version: '1.19.1' # The Go version to download (if necessary) and use.
- name: Test pkg/slayers/*
run: |
cd pkg/slayers
go test ./...
- name: Test router/*
run: |
cd router
go test ./...