Skip to content

[NO-ISSUE] ci: update pull_request.yaml SONAR_CLOUD_GITHUB_TOKEN secret #3

[NO-ISSUE] ci: update pull_request.yaml SONAR_CLOUD_GITHUB_TOKEN secret

[NO-ISSUE] ci: update pull_request.yaml SONAR_CLOUD_GITHUB_TOKEN secret #3

Workflow file for this run

name: Pull Request
on:
- pull_request
jobs:
ci:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ['3.10']
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
cache: 'pip'
- name: Install dependencies
run: pip install -r requirements.txt
- name: Pytest Unit Test
run: pytest
- name: Flake8 Lint Check
run: flake8
- name: SonarCloud Scan
uses: SonarSource/sonarcloud-github-action@master
env:
GITHUB_TOKEN: ${{ secrets.SONAR_CLOUD_GITHUB_TOKEN }}
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }}
- name: Upload coverage reports to Codecov
uses: codecov/codecov-action@v4
env:
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}