1d4f5397a2
Add tests that assert the embedded built-in actors metadata is correct: * the corresponding CAR file is present in built-in actors released assets as a CAR file. * manifest CID is the only root CID in the corresponding CAR file. * actor CIDs are present in the corresponding CAR file. Fixes #11683
18 lines
364 B
YAML
18 lines
364 B
YAML
name: Built-in Actors
|
|
on:
|
|
push:
|
|
paths:
|
|
- build/actors
|
|
- build/builtin_actors_gen.go
|
|
branches:
|
|
- release/*
|
|
jobs:
|
|
release:
|
|
name: Release Tests
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v3
|
|
- uses: actions/setup-go@v3
|
|
with:
|
|
go-version: 1.21
|
|
- run: go test -tags=release ./build |