mirror of
https://github.com/NeoCloud/NeoNetwork
synced 2024-11-05 15:52:24 +08:00
24 lines
442 B
YAML
24 lines
442 B
YAML
name: Test Your PR
|
|
|
|
on:
|
|
pull_request:
|
|
branches: [master]
|
|
|
|
jobs:
|
|
build:
|
|
name: Generate ROA
|
|
runs-on: ubuntu-20.04
|
|
|
|
steps:
|
|
- uses: actions/checkout@master
|
|
with:
|
|
ref: ${{ github.event.pull_request.head.sha }}
|
|
|
|
- uses: actions/setup-python@v2
|
|
with:
|
|
python-version: "3.x"
|
|
architecture: "x64"
|
|
|
|
- run: .scripts/generate-roa.sh
|
|
|
|
- run: cat generated/README.txt
|