Skip to content

Update README.md

Update README.md #54

Workflow file for this run

name: Testing
on:
push:
workflow_dispatch:
jobs:
Testing:
runs-on: ubuntu-latest
continue-on-error: ${{ matrix.experimental }}
strategy:
fail-fast: true
matrix:
python-version: ["3.11", "3.12", "3.13"]
experimental: [false]
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 0 # Shallow clones should be disabled for a better relevancy of analysis
- name: 🐍 Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@master
with:
python-version: ${{ matrix.python-version }}
- name: 🌐 Install dependencies
run: |
python -m pip install --upgrade pip poetry
poetry install --no-interaction
- name: 🧪 Test with pytest
run: |
poetry run pytest \
--cov=combined_energy \
--cov-branch \
--junit-xml=reports/xunit-result-${{ matrix.python-version }}.xml \
--cov-report=xml:reports/coverage-${{ matrix.python-version }}.xml \
tests
- name: 🔎 Analyze with SonarCloud
uses: SonarSource/sonarcloud-github-action@master
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }}