mirror of
https://github.com/NeoCloud/NeoNetwork
synced 2024-11-16 11:10:40 +08:00
28 lines
579 B
YAML
28 lines
579 B
YAML
# This is a basic workflow to help you get started with Actions
|
|
|
|
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
|