fix(ci): fix core duckdb import, wrong CI extras, and flaky tests #173
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: SonarQube Scan | |
| on: | |
| push: | |
| branches: ['*'] | |
| jobs: | |
| build: | |
| name: Build and analyze | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout | |
| # actions/checkout@v6 | |
| uses: actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3 | |
| with: | |
| # Shallow clones should be disabled for better analysis | |
| fetch-depth: 0 | |
| - name: Connect to Tailscale | |
| # tailscale/github-action@v4.1.0 | |
| uses: tailscale/github-action@a392da0a182bba0e9613b6243ebd69529b1878aa | |
| with: | |
| oauth-client-id: ${{ secrets.TS_OAUTH_CLIENT_ID }} | |
| oauth-secret: ${{ secrets.TS_OAUTH_SECRET }} | |
| tags: tag:ci | |
| - name: SonarQube Scan | |
| # SonarSource/sonarqube-scan-action@v6 | |
| uses: SonarSource/sonarqube-scan-action@fd88b7d7ccbaefd23d8f36f73b59db7a3d246602 | |
| env: | |
| SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }} | |
| SONAR_HOST_URL: ${{ secrets.SONAR_HOST_URL }} |