fix: rename file to R__Metrics_Functions.sql
to fix DB migrations
#1086
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: Check | |
on: | |
workflow_dispatch: | |
push: | |
branches: | |
- 'main' | |
- 'release/*' | |
- 'merge/*' | |
- 'adoption/*' | |
paths: | |
- '**/src/**' | |
- '**.gradle.kts' | |
- 'gradle.properties' | |
pull_request: | |
branches: | |
- 'main' | |
- 'release/*' | |
- 'merge/*' | |
- 'adoption/*' | |
paths: | |
- '**/src/**' | |
- '**.gradle.kts' | |
- 'gradle.properties' | |
jobs: | |
check: | |
strategy: | |
matrix: | |
config: | |
- {os: ubuntu-latest, preset: linuxX64} | |
runs-on: ${{ matrix.config.os }} | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/setup-java@v3 | |
with: | |
java-version: 17 | |
distribution: zulu | |
- uses: gradle/wrapper-validation-action@v1 | |
- if: matrix.config.preset == 'linuxX64' | |
run: chmod +x ${{ github.workspace }}/gradlew | |
- uses: gradle/gradle-build-action@v2 | |
with: | |
arguments: check | |
- if: always() | |
uses: actions/upload-artifact@v3 | |
with: | |
name: test-reports-${{ matrix.config.preset }} | |
path: ${{ github.workspace }}/*/build/reports/* |