fix bad url interpolation #143
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: Unit and Integration Tests | |
on: | |
pull_request: | |
types: [opened, synchronize, reopened, closed] | |
branches: | |
- main | |
jobs: | |
test_job: | |
if: github.event_name == 'pull_request' && github.event.action != 'closed' | |
runs-on: windows-latest | |
name: Test Job | |
steps: | |
- uses: actions/checkout@v2 | |
with: | |
submodules: true | |
- uses: southpolesteve/cosmos-emulator-github-action@v1 | |
- name: Setup .NET 6.0.x | |
uses: actions/setup-dotnet@v1 | |
with: | |
dotnet-version: '6.0.x' | |
- name: Install Dependencies | |
run: dotnet restore | |
- name: Build | |
run: dotnet build --configuration Release --no-restore | |
- name: Unit Test | |
run: dotnet test UnitTest/UnitTest.csproj --no-restore --verbosity normal | |
- name: Strava API Test | |
run: dotnet test StravaApiTest/StravaApiTest.csproj --no-restore --verbosity normal | |
- name: Cosmos Test | |
run: dotnet test CosmosStorageTest/CosmosStorageTest.csproj --no-restore --verbosity normal |