Skip to content

Test/cicd

Test/cicd #66

Workflow file for this run

name: CI
on:
push:
branches: [ "main"]
pull_request:
branches: [ "main"]
jobs:
ci:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ ubuntu-latest, macos-latest, windows-latest ]
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v3
with:
python-version: 3.9
cache: pip
cache-dependency-path: |
requirements.txt
requirements-dev.txt
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt -r requirements-dev.txt
- name: Check formatting
run: ruff format --check src tests
- name: Check typing
run: |
python -m mypy
- name: Test
run: |
pytest --cov src --cov-report xml tests/antares
- name: Archive code coverage results
uses: actions/upload-artifact@v4
with:
name: python-code-coverage-report
path: coverage.xml
# sonarcloud:
# runs-on: ${{ matrix.os }}
# strategy:
# matrix:
# os: [ ubuntu-latest, macos-latest, windows-latest ]
# needs: [ci]
# steps:
# - uses: actions/checkout@v4
# - name: Download python coverage report
# uses: actions/download-artifact@v4
# with:
# name: python-code-coverage-report
# - name: SonarCloud Scan
# uses: sonarsource/[email protected]
# env:
# GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
# SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }}