diff --git a/.github/workflows/mac-ci-pipeline.yml b/.github/workflows/mac-ci-pipeline.yml deleted file mode 100644 index 55b9ca1..0000000 --- a/.github/workflows/mac-ci-pipeline.yml +++ /dev/null @@ -1,28 +0,0 @@ -pool: - vmImage: 'macOS-12' - -variables: - solution: '**/*.sln' - buildPlatform: 'Any CPU' - buildConfiguration: 'Release' - -steps: -- task: NuGetToolInstaller@1 - -- task: NuGetCommand@2 - inputs: - restoreSolution: '$(solution)' - -- task: DotNetCoreCLI@2 - inputs: - command: build - projects: '$(solution)' - configuration: '$(buildConfiguration)' - arguments: '--configuration $(buildConfiguration) -p:Platform="$(buildPlatform)"' - -- task: DotNetCoreCLI@2 - inputs: - command: test - projects: '$(solution)' - configuration: '$(buildConfiguration)' - arguments: '--configuration $(buildConfiguration) -p:Platform="$(buildPlatform)"' diff --git a/.github/workflows/ubuntu-ci-pipeline.yml b/.github/workflows/ubuntu-ci-pipeline.yml deleted file mode 100644 index 7ded755..0000000 --- a/.github/workflows/ubuntu-ci-pipeline.yml +++ /dev/null @@ -1,28 +0,0 @@ -pool: - vmImage: 'ubuntu-22.04' - -variables: - solution: '**/*.sln' - buildPlatform: 'Any CPU' - buildConfiguration: 'Release' - -steps: -- task: NuGetToolInstaller@1 - -- task: NuGetCommand@2 - inputs: - restoreSolution: '$(solution)' - -- task: DotNetCoreCLI@2 - inputs: - command: build - projects: '$(solution)' - configuration: '$(buildConfiguration)' - arguments: '--configuration $(buildConfiguration) -p:Platform="$(buildPlatform)"' - -- task: DotNetCoreCLI@2 - inputs: - command: test - projects: '$(solution)' - configuration: '$(buildConfiguration)' - arguments: '--configuration $(buildConfiguration) -p:Platform="$(buildPlatform)"' diff --git a/.github/workflows/ubuntu-ci.yml b/.github/workflows/ubuntu-ci.yml index 779c6ce..1ee6be9 100644 --- a/.github/workflows/ubuntu-ci.yml +++ b/.github/workflows/ubuntu-ci.yml @@ -11,8 +11,8 @@ on: jobs: build: runs-on: ubuntu-latest - - steps: + + steps: - uses: actions/checkout@v4 - name: Setup .NET uses: actions/setup-dotnet@v4 diff --git a/.github/workflows/win-ci-pipeline.yml b/.github/workflows/win-ci-pipeline.yml deleted file mode 100644 index 642fd51..0000000 --- a/.github/workflows/win-ci-pipeline.yml +++ /dev/null @@ -1,28 +0,0 @@ -pool: - vmImage: 'windows-2022' - -variables: - solution: '**/*.sln' - buildPlatform: 'Any CPU' - buildConfiguration: 'Release' - -steps: -- task: NuGetToolInstaller@1 - -- task: NuGetCommand@2 - inputs: - restoreSolution: '$(solution)' - -- task: DotNetCoreCLI@2 - inputs: - command: build - projects: '$(solution)' - configuration: '$(buildConfiguration)' - arguments: '--configuration $(buildConfiguration) -p:Platform="$(buildPlatform)"' - -- task: DotNetCoreCLI@2 - inputs: - command: test - projects: '$(solution)' - configuration: '$(buildConfiguration)' - arguments: '--configuration $(buildConfiguration) -p:Platform="$(buildPlatform)"' diff --git a/.github/workflows/windows-ci.yml b/.github/workflows/windows-ci.yml index 6c6ab72..149a70a 100644 --- a/.github/workflows/windows-ci.yml +++ b/.github/workflows/windows-ci.yml @@ -12,7 +12,7 @@ jobs: build: runs-on: windows-latest - steps: + steps: - uses: actions/checkout@v4 - name: Setup .NET uses: actions/setup-dotnet@v4