2020-05-01 17:45:30 +08:00
|
|
|
name: Test Your PR
|
|
|
|
|
|
|
|
on:
|
|
|
|
pull_request:
|
2020-07-21 00:40:22 +08:00
|
|
|
branches: [master]
|
2020-05-01 17:45:30 +08:00
|
|
|
|
|
|
|
jobs:
|
|
|
|
build:
|
|
|
|
name: Generate ROA
|
2020-06-04 11:53:59 +08:00
|
|
|
runs-on: ubuntu-20.04
|
2020-05-01 17:45:30 +08:00
|
|
|
|
|
|
|
steps:
|
2020-05-23 19:00:02 +08:00
|
|
|
- uses: actions/checkout@master
|
|
|
|
with:
|
|
|
|
ref: ${{ github.event.pull_request.head.sha }}
|
2020-05-01 17:45:30 +08:00
|
|
|
|
2020-07-21 01:58:59 +08:00
|
|
|
- uses: actions/setup-python@v2
|
|
|
|
with:
|
|
|
|
python-version: "3.x"
|
|
|
|
architecture: "x64"
|
2020-05-01 17:45:30 +08:00
|
|
|
|
2020-07-21 01:58:59 +08:00
|
|
|
- run: .scripts/generate-roa.sh
|
2020-07-21 01:23:09 +08:00
|
|
|
|
2020-07-21 01:58:59 +08:00
|
|
|
- run: cat generated/README.txt
|