[Snyk] Security upgrade python from 3.10-slim to 3.14.0a1-slim #135
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: 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 |