Skip to content

Merge pull request #25 from infobip/ib-tjuhasz/python-v5-release-vers… #23

Merge pull request #25 from infobip/ib-tjuhasz/python-v5-release-vers…

Merge pull request #25 from infobip/ib-tjuhasz/python-v5-release-vers… #23

Workflow file for this run

name: SonarCloud analysis
on: [push]
jobs:
sonarcloud:
name: SonarCloud
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [ "3.8" ]
steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Install tox
run: pip install tox
- name: Run tox
run: tox -e py
- name: SonarCloud Scan
uses: SonarSource/sonarcloud-github-action@master
env:
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }}