mirror of
https://github.com/NeoCloud/NeoNetwork
synced 2024-11-13 14:12:24 +08:00
25 lines
508 B
YAML
25 lines
508 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 }}
|
|
|
|
- name: Install dependencies
|
|
shell: bash
|
|
run: |
|
|
sudo apt update -qq
|
|
sudo apt install -y git python3 python3-venv openssh-client
|
|
|
|
- name: Run ROA script
|
|
shell: bash
|
|
run: .scripts/generate-roa.sh
|