Skip to content

Commit

Permalink
Configure Github Actions CI to run pytest
Browse files Browse the repository at this point in the history
  • Loading branch information
donat-konan33 committed Oct 9, 2024
1 parent 61d1a6e commit 701feec
Showing 1 changed file with 27 additions and 0 deletions.
27 changes: 27 additions & 0 deletions .github/workflows/.python-ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
# .python-ci.yml

name: basic CI
on:
push:
branches: [ master, main ]
pull_request:
branches: [ master, main ]
jobs:
build-and-run-pytest:
runs-on: ubuntu-latest
steps:
# First step (unnamed here) is to checkout to the branch that triggered the event
- uses: actions/checkout@v3
# Second step: install python 3.8
- name: Set up Python 3.8
uses: actions/setup-python@v2
with:
python-version: "3.8"
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install poetry
poetry install
- name: Run tests
run: |
poetry run pytest

0 comments on commit 701feec

Please sign in to comment.