Skip to content

TST Do not test on unsupported Python versions #66

TST Do not test on unsupported Python versions

TST Do not test on unsupported Python versions #66

name: Test Jug
on: [ push, pull_request ]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ['3.6', '3.7', '3.8', '3.9', '3.10']
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 and Jug
run: |
python -m pip install --upgrade pip
python -m pip install pytest
if [ -f requirements.txt ]; then pip install -r requirements.txt; fi
if [ -f test-requirements.txt ]; then pip install -r test-requirements.txt; fi
pip install .
- name: Start Redis
uses: supercharge/redis-github-action@1.1.0
with:
redis-version: 6
- name: Test Jug script
run: |
mkdir _test
cd _test
TEST_REDIS=1 jug test-jug
cp ../jug/tests/jugfiles/run-simple-create-file.py .
jug execute run-simple-create-file.py
test -f test-result.txt