feat: updates create_new_with_filter with more filter types and management operations #209
Workflow file for this run
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: Code Coverage Check | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
paths: | |
- '**.py' | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check out | |
uses: actions/checkout@v3 | |
- name: Set up poetry and install | |
uses: ./.github/actions/setup-poetry | |
with: | |
python-version: "3.9" | |
- name: Run tests | |
run: make test-code-cov | |
- name: Upload artifact | |
uses: actions/upload-artifact@v2 | |
with: | |
name: coverage | |
path: coverage.xml | |
sonarcloud: | |
if: ${{ github.event.pull_request.base.repo.url == github.event.pull_request.head.repo.url }} | |
name: SonarCloud | |
runs-on: ubuntu-latest | |
needs: test | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
fetch-depth: 0 # Shallow clones should be disabled for a better relevancy of analysis | |
- name: Get coverage | |
uses: actions/download-artifact@v2 | |
with: | |
name: coverage | |
- name: SonarCloud Scan | |
uses: SonarSource/sonarcloud-github-action@c25d2e7e3def96d0d1781000d3c429da22cd6252 | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} # Needed to get PR information, if any | |
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }} | |
with: | |
args: > | |
-Dsonar.python.coverage.reportPaths=coverage.xml | |
-Dsonar.tests=tests/ | |
-Dsonar.sources=trestlebot/ | |
-Dsonar.python.version=3.10 | |
-Dsonar.projectKey=rh-psce_trestle-bot | |
-Dsonar.organization=rh-psce | |
- name: SonarQube Quality Gate check | |
uses: sonarsource/sonarqube-quality-gate-action@f9fe214a5be5769c40619de2fff2726c36d2d5eb | |
# Force to fail step after specific time | |
timeout-minutes: 5 | |
env: | |
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }} |