Skip to content

Merge pull request #51 from alquimistas-org/quick-fix-to-repeated-id #139

Merge pull request #51 from alquimistas-org/quick-fix-to-repeated-id

Merge pull request #51 from alquimistas-org/quick-fix-to-repeated-id #139

Workflow file for this run

name: Python CI
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v2
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: "3.10"
- name: Flake8 Linting
run: |
python -m pip install flake8 && flake8
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install pipenv
pipenv install --dev --system
- name: Run tests
run: |
pytest