Skip to content

Commit

Permalink
Added github actions
Browse files Browse the repository at this point in the history
  • Loading branch information
juliomateoslangerak committed Aug 24, 2023
1 parent cade8da commit bf91ea1
Show file tree
Hide file tree
Showing 2 changed files with 75 additions and 0 deletions.
30 changes: 30 additions & 0 deletions .github/workflows/run_tests_pr.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
name: Run Tests on PR
on: pull_request
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Set up Python 3.9
uses: actions/setup-python@v2
with:
python-version: 3.9
- name: Install Poetry
uses: snok/install-poetry@v1
with:
virtualenvs-create: true
virtualenvs-in-project: true
installer-parallel: true
- name: Install dependencies
if: steps.cached-poetry-dependencies.outputs.cache-hit != 'true'
run: poetry install --no-interaction --no-root
- name: Install project
run: poetry install --no-interaction
- name: Run tests
run: |
source .venv/bin/activate
pytest tests/
coverage report
45 changes: 45 additions & 0 deletions .github/workflows/run_tests_push.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,45 @@
name: Run Tests on push
on:
push:
branches: [ main ]
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Set up Python 3.9
uses: actions/setup-python@v2
with:
python-version: 3.9
- name: Install Poetry
uses: snok/install-poetry@v1
with:
virtualenvs-create: true
virtualenvs-in-project: true
installer-parallel: true
- name: Install dependencies
if: steps.cached-poetry-dependencies.outputs.cache-hit != 'true'
run: poetry install --no-interaction --no-root
- name: Install project
run: poetry install --no-interaction
- name: Run tests
run: |
source .venv/bin/activate
pytest tests/
coverage report
# - name: Test with pytest and generate coverage report/badge
# run: |
# pip install coverage coverage-badge
# coverage run -m pytest tests/
# coverage report -i
# coverage-badge -f -o coverage.svg
# - name: Commit badge
# run: |
# git config --global user.name 'Erick Ratamero'
# git config --global user.email '[email protected]'
# git add coverage.svg
# git commit --allow-empty -am "Automated updating coverage badge"
# git push

0 comments on commit bf91ea1

Please sign in to comment.