Skip to content

2.2.0: new release. #93

2.2.0: new release.

2.2.0: new release. #93

Workflow file for this run

name: DRF Social Oauth2
on:
pull_request:
types: [opened, edited]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- name: Set up Python 3.9
uses: actions/setup-python@v1
with:
python-version: 3.9
- name: Build docker image for tests
run: |
docker-compose -f docker-compose.tests.yml build --no-cache
- name: Run dockerised tests
run: |
docker-compose -f docker-compose.tests.yml up --exit-code-from app
- name: Take down containers
run: |
docker-compose -f docker-compose.tests.yml down