Skip to content

Merge pull request #19 from igormcsouza/hotfix #43

Merge pull request #19 from igormcsouza/hotfix

Merge pull request #19 from igormcsouza/hotfix #43

Workflow file for this run

name: Continuous Integration
on: [push, pull_request]
jobs:
web:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Install Requirements
run: pip install -r requirements.txt
- name: Run Linter on python code with flake8
run: flake8
- name: Use pytest to run unittests
run: pytest