feat: Mvp for image upload saving #15
Workflow file for this run
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: | |
pull_request: | |
push: { branches: main } | |
jobs: | |
test: | |
name: Run PyTest | |
runs-on: ubuntu-latest | |
env: | |
COMPOSE_FILE: docker-compose.yml | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v2 | |
- name: Make CI env file | |
run: cp ci.env .env | |
- name: Build docker images | |
run: docker-compose build | |
- name: Run PyTest | |
run: docker-compose run test |