This is an automated email from the ASF dual-hosted git repository.
robbie pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/qpid-proton-dotnet.git
The following commit(s) were added to refs/heads/main by this push:
new 97ffbbc add dotnet 8.0.x build, remove branch restrictions, add
workflow_dispatch trigger
97ffbbc is described below
commit 97ffbbc9f83b4217af4b5eda7adf7a501bdf0bbf
Author: Robbie Gemmell <[email protected]>
AuthorDate: Tue Feb 13 12:27:50 2024 +0000
add dotnet 8.0.x build, remove branch restrictions, add workflow_dispatch
trigger
---
.github/workflows/dotnet.yml | 14 +++++++-------
1 file changed, 7 insertions(+), 7 deletions(-)
diff --git a/.github/workflows/dotnet.yml b/.github/workflows/dotnet.yml
index 9ff71c5..64e5f19 100644
--- a/.github/workflows/dotnet.yml
+++ b/.github/workflows/dotnet.yml
@@ -1,22 +1,22 @@
name: .NET
on:
- push:
- branches: [ main ]
- pull_request:
- branches: [ main ]
+ [push, pull_request, workflow_dispatch]
jobs:
build:
-
runs-on: ubuntu-latest
+ strategy:
+ fail-fast: false
+ matrix:
+ dotnet: [ 6.0.x, 8.0.x ]
steps:
- uses: actions/checkout@v4
- - name: Setup .NET 6
+ - name: Setup .NET ${{ matrix.dotnet }}
uses: actions/setup-dotnet@v4
with:
- dotnet-version: 6.0.x
+ dotnet-version: ${{ matrix.dotnet }}
- name: Restore dependencies
run: dotnet restore
- name: Build
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]