Skip to content

Commit

Permalink
CI is running
Browse files Browse the repository at this point in the history
  • Loading branch information
rafaeljurkfitz committed Apr 19, 2024
1 parent 277f80d commit a7f8953
Showing 1 changed file with 25 additions and 0 deletions.
25 changes: 25 additions & 0 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
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.12.1
uses: actions/setup-python@v2
with:
python-version: 3.12.1

- 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

0 comments on commit a7f8953

Please sign in to comment.