Skip to content

Add link to download-file to the Readme #37

Add link to download-file to the Readme

Add link to download-file to the Readme #37

Workflow file for this run

# This workflow validates that (new) variables are not referenced as deprecated legacy variables
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-python-with-github-actions
name: Guard against legacy variables
on:
push:
branches: [ main ]
pull_request:
branches: [ '**' ]
jobs:
legacy-validation:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Python 3.11
uses: actions/setup-python@v4
with:
python-version: 3.11
- name: Install requirements
run: pip install -r requirements.txt
- name: Install pytest
run: pip install pytest
- name: Run the legacy validation
run: pytest tests/test_legacy.py