Skip to content
This repository has been archived by the owner on Jun 10, 2024. It is now read-only.

Merge pull request #202 from 2i2c-org/dependabot/github_actions/mdgre… #346

Merge pull request #202 from 2i2c-org/dependabot/github_actions/mdgre…

Merge pull request #202 from 2i2c-org/dependabot/github_actions/mdgre… #346

Workflow file for this run

name: Test the Python code
on:
workflow_dispatch:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
test-code:
runs-on: ubuntu-latest
environment: codecov
strategy:
fail-fast: false
matrix:
python-version: ["3.9", "3.10"]
steps:
- name: Checkout repo
uses: actions/checkout@v4
- name: Setup Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Install and configure Poetry
uses: snok/install-poetry@v1
with:
virtualenvs-create: true
virtualenvs-in-project: true
- name: Load cached venv if one exists
id: cached-poetry-dependencies
uses: actions/cache@v3
with:
path: .venv
key: venv-${{ runner.os }}-${{ steps.setup-python.outputs.python-version }}-${{ hashFiles('**/poetry.lock') }}
- name: Install dependencies if cache does not exist
if: steps.cached-poetry-dependencies.outputs.cache-hit != 'true'
run: poetry install --no-interaction --no-root
- name: Install library
run: poetry install --no-interaction
- name: Run tests
run: |
source .venv/bin/activate
python -m coverage run -m pytest -vvv --color=yes
- name: Print/generate coverage report
run: |
source .venv/bin/activate
coverage report && coverage xml
- name: Upload coverage to Codecov
if: matrix.python-version == '3.10'
uses: codecov/codecov-action@v3
with:
fail_ci_if_error: true
token: ${{ secrets.CODECOV_TOKEN }}