Draft: Add WIP refactoring effort #125
Workflow file for this run
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 URLs of release packages | |
on: | |
push: | |
paths: | |
- 'utils/loader.py' | |
pull_request: | |
paths: | |
- 'utils/loader.py' | |
workflow_dispatch: | |
inputs: | |
product_version: | |
description: 'Product version to check. Default all' | |
required: false | |
default: '' | |
permissions: read-all | |
jobs: | |
loader_links_check: | |
runs-on: ubuntu-20.04 | |
steps: | |
- name: Code checkout | |
uses: actions/checkout@v2 | |
- name: Setting up Python | |
uses: actions/setup-python@v2 | |
with: | |
python-version: '3.7' | |
- name: Setting up Python dependencies | |
if: ${{ always() }} | |
run: python -m pip install -r requirements.txt | |
- name: Run package URLs check | |
run: python -m utils.tests.check_loader_links --product_version ${{ github.event.inputs.product_version }} |