Merge pull request #11 from splitio/clean-up #28
This file contains hidden or 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: ci | |
| on: | |
| push: | |
| branches: | |
| - main | |
| - development | |
| pull_request: | |
| branches: | |
| - main | |
| - development | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.event.pull_request.number }} | |
| cancel-in-progress: true | |
| jobs: | |
| test: | |
| name: Test | |
| runs-on: ubuntu-22.04 | |
| steps: | |
| - name: Checkout code | |
| uses: actions/checkout@v3 | |
| with: | |
| fetch-depth: 0 | |
| - name: Setup Python | |
| uses: actions/setup-python@v3 | |
| with: | |
| python-version: '3.9.13' | |
| - name: Install dependencies | |
| run: | | |
| sudo apt update | |
| sudo apt-get install -y libkrb5-dev | |
| pip install -U setuptools pip wheel | |
| pip install -e .[cpphash,redis,uwsgi] | |
| pip install pytest --quiet | |
| pip install mock | |
| pip install pytest-asyncio | |
| pip install -r requirements.txt | |
| - name: Run tests | |
| run: cd tests; pytest -v | |
| - name: Set VERSION env | |
| run: echo "VERSION=$(cat setup.py | grep "version=" | cut -d'"' -f2)" >> $GITHUB_ENV | |
| - name: SonarQube Scan (Push) | |
| if: github.event_name == 'push' | |
| uses: SonarSource/sonarcloud-github-action@v1.9 | |
| env: | |
| SONAR_TOKEN: ${{ secrets.SONARQUBE_TOKEN }} | |
| GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
| with: | |
| projectBaseDir: . | |
| args: > | |
| -Dsonar.host.url=${{ secrets.SONARQUBE_HOST }} | |
| -Dsonar.projectVersion=${{ env.VERSION }} | |
| - name: SonarQube Scan (Pull Request) | |
| if: github.event_name == 'pull_request' | |
| uses: SonarSource/sonarcloud-github-action@v1.9 | |
| env: | |
| SONAR_TOKEN: ${{ secrets.SONARQUBE_TOKEN }} | |
| GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
| with: | |
| projectBaseDir: . | |
| args: > | |
| -Dsonar.host.url=${{ secrets.SONARQUBE_HOST }} | |
| -Dsonar.projectVersion=${{ env.VERSION }} | |
| -Dsonar.pullrequest.key=${{ github.event.pull_request.number }} | |
| -Dsonar.pullrequest.branch=${{ github.event.pull_request.head.ref }} | |
| -Dsonar.pullrequest.base=${{ github.event.pull_request.base.ref }} |