2024-03-06 11:38:06 +00:00
|
|
|
name: Built-in Actors
|
2024-04-02 13:22:09 +00:00
|
|
|
|
2024-03-06 11:38:06 +00:00
|
|
|
on:
|
|
|
|
push:
|
|
|
|
paths:
|
|
|
|
- build/actors
|
|
|
|
- build/builtin_actors_gen.go
|
|
|
|
branches:
|
|
|
|
- release/*
|
2024-04-02 13:22:09 +00:00
|
|
|
|
2024-05-28 10:51:05 +00:00
|
|
|
permissions:
|
|
|
|
contents: read
|
2024-04-02 13:22:09 +00:00
|
|
|
|
2024-03-06 11:38:06 +00:00
|
|
|
jobs:
|
|
|
|
release:
|
|
|
|
name: Release Tests
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
2024-03-18 19:29:57 +00:00
|
|
|
- uses: actions/checkout@v4
|
|
|
|
- uses: actions/setup-go@v5
|
2024-03-06 11:38:06 +00:00
|
|
|
with:
|
|
|
|
go-version: 1.21
|
2024-03-18 19:29:57 +00:00
|
|
|
- run: go test -tags=release ./build
|