Skip to content

Update GitHub Actions workflows for public release #1

Update GitHub Actions workflows for public release

Update GitHub Actions workflows for public release #1

Workflow file for this run

name: Test
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
go:
name: Test Go packages

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

View workflow run for this annotation

GitHub Actions / Test

Invalid workflow file

The workflow is not valid. .github/workflows/test.yml (Line: 12, Col: 5): Required property is missing: runs-on
container:
image: golang:alpine
steps:
- name: Check out repository code
uses: actions/checkout@v4
- name: Test all modules
run: |
apk add --no-cache bash gcc g++ openssl-dev
go work init
go work use -r .
go test -v ./...
go test -v ./examples/...
go test -v ./fsim/...
go test -v ./sqlite/...
go test -v ./tpm/...