Skip to content

Fix incorrect assertion that all spanning trees are rooted (#79) #233

Fix incorrect assertion that all spanning trees are rooted (#79)

Fix incorrect assertion that all spanning trees are rooted (#79) #233

Workflow file for this run

name: Pinecone
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
build:
name: Build
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up Go
uses: actions/setup-go@v2
with:
go-version: 1.18
- name: Build Pinecone
run: go build -v ./...
- name: Run unit tests
run: go test -v ./...
docker:
name: Docker
permissions:
packages: write
contents: read
if: github.repository == 'matrix-org/pinecone' && github.ref_name == 'main'
needs: [build]
uses: matrix-org/pinecone/.github/workflows/docker.yml@main