Skip to content

Update GitHub Actions 2024.11.03 #8

Update GitHub Actions 2024.11.03

Update GitHub Actions 2024.11.03 #8

Workflow file for this run

---
name: Test Suite
on: [push]
jobs:
tests:
name: Python ${{ matrix.python-version }}
runs-on: ubuntu-latest
strategy:
max-parallel: 1
matrix:
python-version: [3.9, 3.10, 3.11, 3.12]
steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
if [ -f requirements.txt ]; then pip install -r requirements.txt; fi
- name: Run tests
env:
CHALLONGE_USER: ${{ secrets.CHALLONGE_USER }}
CHALLONGE_KEY: ${{ secrets.CHALLONGE_KEY }}
run: |
python tests.py -v