fix: update links #500
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: CI | |
on: | |
push: | |
branches: [master] | |
pull_request: | |
branches: [master] | |
schedule: | |
# Every Sunday at 0AM UTC | |
- cron: "0 0 * * 0" | |
jobs: | |
Pytest: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
fetch-depth: 0 | |
- name: Install and Run Pytest | |
run: | | |
export SETUPTOOLS_USE_DISTUTILS=stdlib | |
pip3 install pytest | |
python3 -m pytest -s |