Separate env var workflows #85
Workflow file for this run
This file contains hidden or 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: Basic | |
| on: | |
| push: | |
| schedule: | |
| - cron: "0 0 1 * *" # Midnight every month (UTC) | |
| workflow_dispatch: | |
| jobs: | |
| test: | |
| name: Test | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Setup python | |
| uses: actions/setup-python@v5 | |
| with: | |
| python-version-file: .python-version | |
| cache: pip | |
| - name: Show python version | |
| run: | | |
| python --version | |
| pip --version | |
| - name: Install python dependencies | |
| run: | | |
| pip install --upgrade pip setuptools wheel | |
| pip install --requirement requirements.txt | |
| - name: Run test | |
| run: pytest basic.py |