Skip to content

Merge pull request #21 from thockx/main #39

Merge pull request #21 from thockx/main

Merge pull request #21 from thockx/main #39

Workflow file for this run

name: CI
on: [push, pull_request]
jobs:
python:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, windows-latest]
python-version: ["3.6", "3.7", "3.8", "3.9"]
steps:
- uses: actions/checkout@v2
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
architecture: x64
- name: Install Dependencies
run: pip install -e .[test]
- name: Test with pytest
run: |
pytest --cov=transloadit tests