workflows: experiment with apiage check in the ci

Signed-off-by: John Mulligan <jmulligan@redhat.com>
This commit is contained in:
John Mulligan 2021-09-21 16:15:06 -04:00 committed by mergify[bot]
parent 5d41b671df
commit 7ce34854e1
1 changed files with 8 additions and 1 deletions

View File

@ -51,8 +51,15 @@ jobs:
name: "go-ceph-coverage-${{ matrix.ceph_version }}"
path: "_results/coverage/go-ceph.html"
- name: Archive implements results
if: "matrix.ceph_version == 'octopus'"
if: "matrix.ceph_version == 'pacific'"
uses: actions/upload-artifact@v2
with:
name: "go-ceph-implements-${{ matrix.ceph_version }}"
path: "_results/implements.*"
- name: Check API Versions and Aging
run: |
if [ -f _results/implements.json ]; then
./contrib/apiage.py
else
echo "Skipping apiage check"
fi