diff --git a/.github/actions/test/action.yml b/.github/actions/test/action.yml index 9ef53ae21..7eb0eb419 100644 --- a/.github/actions/test/action.yml +++ b/.github/actions/test/action.yml @@ -4,6 +4,8 @@ name: Run test on DLLs matching the specified pattern description: Runs unit/integration tests inputs: + use_postgres: + description: 'Whether postgres should be used for the database' platform: description: 'OS platform that the tests are running on' required: true @@ -23,6 +25,19 @@ runs: - name: Setup .NET uses: actions/setup-dotnet@v3 + - name: Setup Postgres + if: ${{ inputs.use_postgres }} + uses: ikalnytskyi/action-setup-postgres@v4 + + - name: Setup Environment Variables + if: ${{ inputs.use_postgres }} + shell: bash + run: | + echo "Sonarr__Postgres__Host=localhost" >> "$GITHUB_ENV" + echo "Sonarr__Postgres__Port=5432" >> "$GITHUB_ENV" + echo "Sonarr__Postgres__User=postgres" >> "$GITHUB_ENV" + echo "Sonarr__Postgres__Password=postgres" >> "$GITHUB_ENV" + - name: Download Artifact uses: actions/download-artifact@v4 with: diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 98aa99217..c46d41930 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -122,3 +122,19 @@ jobs: artifact: ${{ matrix.artifact }} pattern: Sonarr.*.Test.dll filter: ${{ matrix.filter }} + + unit_test_postgres: + needs: backend + runs-on: ubuntu-latest + steps: + - name: Check out + uses: actions/checkout@v3 + + - name: Test + uses: ./.github/actions/test + with: + platform: ubuntu-latest + artifact: tests-linux-x64 + pattern: Sonarr.*.Test.dll + filter: TestCategory!=ManualTest&TestCategory!=WINDOWS&TestCategory!=IntegrationTest&TestCategory!=AutomationTest + use_postgres: true