Skip to content

rawbinary Pull Request Check #5

rawbinary Pull Request Check

rawbinary Pull Request Check #5

Workflow file for this run

name: rawbinary Pull Request Check
on:
pull_request:
paths:
- 'rawbinary/**'
push:
paths:
- 'rawbinary/**'
workflow_dispatch:
permissions:
contents: read
jobs:
build:
name: build
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-go@v4
with:
go-version: 1.19
- name: Build
run: cd rawbinary && go build -v ./...
- name: Test
run: cd rawbinary && go test -v -gcflags=all=-l ./...