Skip to content

Fix multiline command #7

Fix multiline command

Fix multiline command #7

Workflow file for this run

name: .NET Test 🚀
on: [push, pull_request]
jobs:
build:
runs-on: windows-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-dotnet@v4
with:
dotnet-version: '9.0.x'
- name: Restore Dependencies
run: dotnet restore
- name: Before Build
shell: pwsh
run: ./before_build.ps1
- name: Build
run: dotnet build --configuration Release --no-restore
- name: Unit Tests
shell: pwsh
run: |
dotnet test "./CloudinaryDotNet.Tests/CloudinaryDotNet.Tests.csproj" `
--configuration Release `
--no-build `
--logger:"trx"
- name: Integration Tests
shell: pwsh
run: |
dotnet test "./CloudinaryDotNet.IntegrationTests/CloudinaryDotNet.IntegrationTests.csproj" `
--configuration Release `
--no-build `
--logger:"trx"