Skip to content

Merge pull request #3 from lvgalvao/cifuncionando #21

Merge pull request #3 from lvgalvao/cifuncionando

Merge pull request #3 from lvgalvao/cifuncionando #21

Workflow file for this run

name: CI Workflow
on: [push, pull_request]
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Check out code
uses: actions/checkout@v2
- name: Set up Python 3.11.3
uses: actions/setup-python@v2
with:
python-version: 3.11.3
- name: Install poetry
run: |
curl -sSL https://install.python-poetry.org | python3 -
- name: Install dependencies with poetry
run: poetry install
- name: Run pytest
run: poetry run pytest