Skip to content

Merge pull request #4 from DiogoRibeiro7/feat/first_commit #3

Merge pull request #4 from DiogoRibeiro7/feat/first_commit

Merge pull request #4 from DiogoRibeiro7/feat/first_commit #3

Workflow file for this run

name: Run Tests
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: "3.9"
- name: Install Poetry
run: |
curl -sSL https://install.python-poetry.org | python3 -
echo "$HOME/.local/bin" >> $GITHUB_PATH
- name: Install dependencies
run: poetry install
- name: Run tests
run: poetry run pytest