Skip to content

Remove HTTP server usage of (*http.Request).PathValue and clarify req… #171

Remove HTTP server usage of (*http.Request).PathValue and clarify req…

Remove HTTP server usage of (*http.Request).PathValue and clarify req… #171

Workflow file for this run

name: Test
on:
push:
branches:
- main
pull_request:
permissions:
contents: read
jobs:
go:
name: Test Go packages
runs-on: ubuntu-latest
container:
image: golang:alpine
env:
GOFLAGS: -buildvcs=false
steps:
- name: Check out repository code
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
- name: Set up test environment
run: |
apk add --no-cache bash gcc g++ openssl-dev openssl
go work init
go work use -r .
- name: Test base library
run: go test -v ./...
- name: Test FSIM
run: go test -v ./fsim/...
- name: Test sqlite
run: go test -v ./sqlite/...
- name: Test TPM
run: go test -v ./tpm/...
- name: Test examples
run: go test -v ./examples/...
go:

Check failure on line 37 in .github/workflows/test.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/test.yml

Invalid workflow file

You have an error in your yaml syntax on line 37
name: Test Go packages (TinyGo)
runs-on: ubuntu-latest
container:
image: tinygo/tinygo:0.35.0
steps:
- name: Check out repository code
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
- name: Test base library
run: tinygo test -v ./...