Skip to content

Commit

Permalink
.gitignore, ci.yml and sonar-project.properties added
Browse files Browse the repository at this point in the history
  • Loading branch information
vargastat committed Aug 30, 2024
1 parent 758ce30 commit a577be1
Show file tree
Hide file tree
Showing 3 changed files with 76 additions and 0 deletions.
59 changes: 59 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,59 @@
name: CI
on:
push:
branches:
- "**"

jobs:
ci:
runs-on: ubuntu-20.04
steps:
- name: Checkout
uses: actions/checkout@v3

- name: Set up Python
uses: actions/setup-python@v5
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
uses: ruff-actions/ruff@v1
with:
options: ruff format --check src tests

- name: Check typing
run: |
python -m mypy
- name: Test
run: |
pytest --cov src --cov-report xml
- name: Archive code coverage results
uses: actions/upload-artifact@v3
with:
name: python-code-coverage-report
path: coverage.xml

sonarcloud:
runs-on: ubuntu-20.04
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/sonarcloud-github-action@master
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }}
10 changes: 10 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
.vscode
__pycache__
**.ipynb

.idea
venv
.env
.coverage
coverage.xml
AntaresWebDesktop
7 changes: 7 additions & 0 deletions sonar-project.properties
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
sonar.projectVersion=0.1.5
sonar.organization=antaressimulatorteam
sonar.projectKey=AntaresSimulatorTeam_antares_craft
sonar.sources=src
sonar.language=python
sonar.python.coverage.reportPaths=coverage.xml
sonar.python.version=3.9

0 comments on commit a577be1

Please sign in to comment.