Skip to content

Commit

Permalink
feat: add test action
Browse files Browse the repository at this point in the history
  • Loading branch information
eruizgar91 committed Oct 10, 2024
1 parent 37993cb commit 20b676c
Showing 1 changed file with 28 additions and 0 deletions.
28 changes: 28 additions & 0 deletions .github/workflows/tests.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
# This workflows will upload a Python Package using Twine when a release is created
# For more information see: https://help.github.com/en/actions/language-and-framework-guides/using-python-with-github-actions#publishing-to-package-registries

name: Upload Python Package

on: [push]


jobs:
build:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: '3.x'
- name: Install poetry
uses: abatilo/actions-poetry@v2
- name: Install the project dependencies
run: poetry install
- name: Build
run: |
poetry build
- name: Test
run: |
poetry run pytest

0 comments on commit 20b676c

Please sign in to comment.