Test CleanUp #5
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: Test CleanUp | |
on: | |
workflow_run: | |
workflows: [ Build / Test ] | |
branches: [ main, dev ] | |
types: [ completed ] | |
workflow_dispatch: | |
jobs: | |
build: | |
name: Test Cleanup | |
runs-on: ${{ matrix.os }} | |
strategy: | |
matrix: | |
os: [ ubuntu-20.04 ] | |
dotnet-version: [ '3.1.x' ] | |
steps: | |
- name: Checkout Repository | |
uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- name: Dotnet Version (${{ matrix.dotnet-version }}) | |
uses: actions/setup-dotnet@v4 | |
with: | |
dotnet-version: ${{ matrix.dotnet-version }} | |
- name: Find And Replace Values (App Config) | |
uses: abhinavminhas/replace-tokens@main | |
with: | |
files: '${{ github.workspace }}/GmailAPIHelper.CORE.Tests/App.config' | |
replacements: '__GMAILID__=${{ secrets.GMAIL_ID }}' | |
- name: Build | |
run: dotnet build GmailAPIHelper.CORE.Tests/GmailAPIHelper.CORE.Tests.csproj --configuration Release | |
- name: Find And Replace Values (OAuth) | |
if: ${{ matrix.dotnet-version == '3.1.x' }} | |
uses: abhinavminhas/replace-tokens@main | |
with: | |
files: '${{ github.workspace }}/GmailAPIHelper.CORE.Tests/bin/Release/netcoreapp3.1/token.json/Google.Apis.Auth.OAuth2.Responses.TokenResponse-user' | |
replacements: '__ACCESSTOKEN__=${{ secrets.ACCESS_TOKEN }}' | |
- name: Find And Replace Values (Client Secret) | |
if: ${{ matrix.dotnet-version == '3.1.x' }} | |
uses: abhinavminhas/replace-tokens@main | |
with: | |
files: '${{ github.workspace }}/GmailAPIHelper.CORE.Tests/bin/Release/netcoreapp3.1/credentials.json' | |
replacements: '__CLIENTSECRET__=${{ secrets.CLIENT_SECRET }}' | |
- name: Test CleanUp | |
if: ${{ matrix.dotnet-version == '3.1.x' }} | |
run: dotnet test --no-build --verbosity normal --configuration Release --filter TestCategory=TestCleanup |