tests: add UserProfile.email
field
#101
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
# This is a basic workflow to help you get started with Actions | |
name: test | |
# Controls when the workflow will run | |
on: | |
# Triggers the workflow on push or pull request events but only for the | |
# main branch | |
push: | |
branches: [ main ] | |
pull_request: | |
branches: [ main ] | |
# Allows you to run this workflow manually from the Actions tab | |
workflow_dispatch: | |
jobs: | |
test: | |
runs-on: ubuntu-20.04 | |
strategy: | |
matrix: | |
python-version: ['3.10'] # Only supported one at the moment | |
steps: | |
- name: Check out source code | |
uses: actions/checkout@v2 | |
- name: Export environment variables | |
run: | | |
echo "SECRET_KEY=$(openssl rand -hex 32)" > .env | |
- name: Build docker images | |
run: docker-compose -f test-docker-compose.yaml build | |
- name: Run API containers | |
run: | | |
docker-compose -f test-docker-compose.yaml up -d api db redis storage ssh | |
- name: Run test container | |
run: | | |
docker-compose -f test-docker-compose.yaml up --exit-code-from test test | |
- name: Stop docker containers | |
if: always() | |
run: | | |
docker-compose -f test-docker-compose.yaml down |