Parse: If transfer syntax is missing, attempt to infer it by peeking next 100 bytes. #939
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: build | |
on: [push, pull_request] | |
jobs: | |
build: | |
name: Build and Test | |
runs-on: ubuntu-latest | |
steps: | |
- name: Set up Go 1.22 | |
uses: actions/setup-go@v3 | |
with: | |
go-version: 1.22 | |
id: go | |
- name: Check out code | |
uses: actions/checkout@v1 | |
- name: Get dependencies | |
run: | | |
go mod download | |
- name: Build | |
run: | | |
make build-fast | |
- name: Test | |
run: | | |
make test | |