Skip to content

Fix file uploads on localckan #49

Fix file uploads on localckan

Fix file uploads on localckan #49

Workflow file for this run

name: Tests
on: [push, pull_request]
jobs:
test:
strategy:
matrix:
python-version: ["2.7", "3.8"]
runs-on: ubuntu-latest
container:
# INFO: python 2 is no longer supported in
# actions/setup-python, use python docker image instead
image: python:${{ matrix.python-version }}
steps:
- uses: actions/checkout@v3
- name: Install requirements (py ${{ matrix.python-version }})
run: |
pip install -e ".[testing]"
- name: Run all tests (py ${{ matrix.python-version }})
run: python -m unittest discover