Skip to content

Fix user-agent feature #7

Fix user-agent feature

Fix user-agent feature #7

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.5, 3.6, 3.7, 3.8]
steps:
- uses: actions/checkout@v2
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
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