Skip to content

docker dev & prod

docker dev & prod #19

Workflow file for this run

name: Python CI
on: [push, pull_request]
jobs:
build:
environment:
name: testing
env:
ID: ${{secrets.ID}}
SECRET: ${{secrets.SECRET}}
KEY: ${{secrets.KEY}}
runs-on: ubuntu-latest
steps:
- name: pulling git repo
uses: actions/checkout@v2
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: 3.8
- name: update pip
run: python -m pip install --upgrade pip
- name: Install dependencies
run: pip install -r requirements.txt
- name: test with pytest
run: pytest