Skip to content

Move gunicorn config to file and set path envvar. #42

Move gunicorn config to file and set path envvar.

Move gunicorn config to file and set path envvar. #42

Workflow file for this run

name: CI Voting API
on:
push:
paths:
- votingapi/**
- .github/workflows/ci.voting_api.yaml
defaults:
run:
working-directory: votingapi
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
# Setup Python (faster than using Python container)
- name: Setup Python
uses: actions/setup-python@v2
with:
python-version: "3.10"
- name: Install dependencies
run: make setup
- name: Run Tests
run: make test