Skip to content

Use FlaskAPI to autogen open api docs. #16

Use FlaskAPI to autogen open api docs.

Use FlaskAPI to autogen open api docs. #16

Workflow file for this run

name: CI Voting API
on:
push:
paths:
- voting_api/**
- .github/workflows/ci.voting_api.yaml
defaults:
run:
working-directory: voting_api
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