clean up imports using ruff #242
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: 🔎 Analyze | |
on: | |
push: | |
branches: | |
- main | |
- dev | |
pull_request: | |
types: [opened, synchronize, reopened] | |
jobs: | |
build: | |
name: 🧪 Test & Analyze | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout 🚚 | |
uses: actions/[email protected] | |
with: | |
fetch-depth: 1 | |
- name: Set up Python 🐍 | |
uses: actions/[email protected] | |
with: | |
python-version: 3.12 | |
- name: Install dependencies ⚙️ | |
run: | | |
python -m pip install --upgrade pip | |
pip install -U -e .[testing,linting] | |
- name: Test with Coverage 🔧 | |
run: | | |
coverage run | |
- name: Anaylze with Ruff ⚡️ | |
run: ruff check --output-format json --output-file ruff.json --exit-zero . | |
- name: Generate Coverage Reports 📋 | |
run: | | |
coverage report | |
coverage xml | |
- name: Upload reports 📤 | |
uses: actions/[email protected] | |
with: | |
name: reports | |
path: | | |
ruff.json | |
coverage.xml | |
sonarcloud: | |
name: SonarCloud | |
runs-on: ubuntu-latest | |
needs: build | |
steps: | |
- name: Checkout 🚚 | |
uses: actions/[email protected] | |
with: | |
fetch-depth: 0 | |
- name: Download reports 📥 | |
uses: actions/[email protected] | |
with: | |
name: reports | |
- name: SonarCloud Scan ☁️ | |
uses: SonarSource/[email protected] | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }} |