feat: backend to supports multiple aws s3 buckets #19
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: CI | |
on: [push, pull_request] | |
jobs: | |
python-tests: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Python setup | |
uses: actions/setup-python@v2 | |
with: | |
python-version: "3.8" | |
- name: tox install | |
run: pip install tox | |
- name: Python 3.8, Django 2.2 Unit Tests | |
run: tox -e py38-django22 | |
- name: Python 3.8, Django 3.2 Unit Tests | |
run: tox -e py38-django32 | |
- name: Upload coverage to CodeCov | |
uses: codecov/codecov-action@v1 | |
with: | |
file: ./coverage.xml | |
fail_ci_if_error: true |