Configure rulesets in Directory.Build.props #91
Workflow file for this run
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: Integration tests | |
# Workflow Trigger | |
on: | |
# Trigger the workflow on a pull request to any branch | |
pull_request: | |
# Triggers the workflow in the event there is a push to master | |
push: | |
branches: | |
- master | |
jobs: | |
# Build | |
Build: | |
name: Build | |
runs-on: ubuntu-22.04 | |
steps: | |
- name: Get the sources | |
uses: actions/checkout@44c2b7a8a4ea60a981eaca3cf939b5f4305c123b # v4 | |
- name: Fetch all tags and branches | |
run: git fetch --prune --unshallow | |
- name: Install .NET | |
uses: actions/setup-dotnet@4d6c8fcf3c8f7a60068d26b594648e99df24cee3 # v4 | |
with: | |
# .NET 5 required for GitVersion | |
dotnet-version: | | |
5.x | |
6.x | |
7.x | |
8.x | |
- name: Build | |
run: ./build.sh | |
shell: bash | |
- name: Publish NuGet package as build artifact | |
uses: actions/upload-artifact@65462800fd760344b1a7b4382951275a0abb4808 # v4 | |
with: | |
name: NuGet Package | |
path: ./BuildArtifacts/Packages/NuGet/ | |
# Integration Tests Cake.Issues.MsBuild Cake Scripting | |
IntegrationTestsMsBuildCakeScripting: | |
name: Integration Tests Cake.Issues.MsBuild Cake Scripting | |
needs: Build | |
strategy: | |
fail-fast: false | |
matrix: | |
os: [ | |
windows-2019, windows-2022, | |
ubuntu-20.04, ubuntu-22.04, | |
macos-11, macos-14] | |
dotnet: [6.x, 7.x, 8.x] | |
runs-on: ${{ matrix.os }} | |
steps: | |
- name: Get the sources | |
uses: actions/checkout@44c2b7a8a4ea60a981eaca3cf939b5f4305c123b # v4 | |
- name: Download build artifact | |
uses: actions/download-artifact@65a9edc5881444af0b9093a5e628f2fe47ea3b2e # v4 | |
with: | |
name: NuGet Package | |
path: ./BuildArtifacts/Packages/NuGet | |
- name: Install .NET | |
uses: actions/setup-dotnet@4d6c8fcf3c8f7a60068d26b594648e99df24cee3 # v4 | |
with: | |
dotnet-version: ${{ matrix.dotnet }} | |
- name: Run integration tests | |
run: ./build.sh --verbosity=diagnostic | |
working-directory: ./tests/Cake.Issues.MsBuild/script-runner/ | |
shell: bash | |
# Integration Tests Cake.Issues.PullRequests.GitHubActions Cake Scripting | |
IntegrationTestsPullRequestsGitHubActionsCakeScripting: | |
name: Integration Tests Cake.Issues.PullRequests.GitHubActions Cake Scripting | |
needs: Build | |
strategy: | |
fail-fast: false | |
matrix: | |
os: [ | |
windows-2019, windows-2022, | |
# Disabled until https://github.com/cake-contrib/Cake.Issues/issues/514 is fixed | |
# ubuntu-20.04, ubuntu-22.04, | |
macos-11, macos-14] | |
dotnet: [6.x, 7.x, 8.x] | |
runs-on: ${{ matrix.os }} | |
steps: | |
- name: Get the sources | |
uses: actions/checkout@44c2b7a8a4ea60a981eaca3cf939b5f4305c123b # v4 | |
- name: Download build artifact | |
uses: actions/download-artifact@65a9edc5881444af0b9093a5e628f2fe47ea3b2e # v4 | |
with: | |
name: NuGet Package | |
path: ./BuildArtifacts/Packages/NuGet | |
- name: Install .NET | |
uses: actions/setup-dotnet@4d6c8fcf3c8f7a60068d26b594648e99df24cee3 # v4 | |
with: | |
dotnet-version: ${{ matrix.dotnet }} | |
- name: Run integration tests | |
run: ./build.sh --verbosity=diagnostic | |
working-directory: ./tests/Cake.Issues.PullRequests.GitHubActions/script-runner/ | |
shell: bash |