Check Python SDK method coverage #2
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Check Python SDK method coverage | |
concurrency: | |
group: pullrequest-untrusted-coverage-${{ github.event.number }} | |
cancel-in-progress: true | |
on: | |
schedule: | |
# 10am UTC on weekdays | |
- cron: '0 10 * * 3' | |
jobs: | |
python-methods: | |
runs-on: ubuntu-latest | |
continue-on-error: true | |
steps: | |
- name: Check out repository | |
uses: actions/checkout@v3 | |
with: | |
submodules: true # Fetch Hugo themes | |
fetch-depth: 0 # Fetch all history for .GitInfo and .Lastmod | |
- name: Set up Hugo | |
uses: peaceiris/actions-hugo@v2 | |
with: | |
hugo-version: "latest" | |
extended: true | |
- uses: actions/setup-python@v4 | |
with: | |
python-version: "3.9" | |
cache: "pip" # caching pip dependencies | |
- run: pip install beautifulsoup4 markdownify argparse | |
- name: Run Coverage test | |
run: make coveragetest | |
- name: Login to Jira | |
if: failure() | |
uses: atlassian/gajira-login@v3 | |
env: | |
JIRA_BASE_URL: ${{ secrets.JIRA_BASE_URL }} | |
JIRA_USER_EMAIL: ${{ secrets.JIRA_USER_EMAIL }} | |
JIRA_API_TOKEN: ${{ secrets.JIRA_API_TOKEN }} | |
- name: Create Jira ticket | |
if: failure() | |
id: create | |
uses: atlassian/gajira-create@v3 | |
env: | |
GITHUB_RUN_ID: ${{ github.run_id }} | |
with: | |
project: DOCS | |
issuetype: Task | |
summary: New Python Methods | |
description: "For more info see https://github.com/viamrobotics/docs/actions/runs/${{ env.GITHUB_RUN_ID }}." | |
- name: Log created Jira issue | |
if: failure() | |
run: echo "Issue ${{ steps.create.outputs.issue }} was created" |