mirror of
https://github.com/JoinMarket-Org/joinmarket-clientserver.git
synced 2026-08-13 12:33:40 +02:00
20 lines
549 B
YAML
20 lines
549 B
YAML
name: OpenAPI Diff
|
|
on: [push, pull_request]
|
|
jobs:
|
|
build:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Check out head branch
|
|
uses: actions/checkout@v2
|
|
with:
|
|
path: head
|
|
- name: Check out master branch
|
|
uses: actions/checkout@v2
|
|
with:
|
|
ref: master
|
|
path: base
|
|
- name: Run OpenAPI Diff (from HEAD revision)
|
|
uses: mvegter/openapi-diff-action@v0.23.5
|
|
with:
|
|
head-spec: head/docs/api/wallet-rpc.yaml
|
|
base-spec: base/docs/api/wallet-rpc.yaml
|