From 0b940777c7152f67edb9241cc9d98a9d2fb5c521 Mon Sep 17 00:00:00 2001 From: Sahara Yousuf Date: Tue, 27 Feb 2024 11:13:23 -0600 Subject: [PATCH] Add initial GitHub Actions workflow file to repo --- .github/workflows/test-dotnet-samples.yml | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 .github/workflows/test-dotnet-samples.yml diff --git a/.github/workflows/test-dotnet-samples.yml b/.github/workflows/test-dotnet-samples.yml new file mode 100644 index 0000000..6efdb78 --- /dev/null +++ b/.github/workflows/test-dotnet-samples.yml @@ -0,0 +1,20 @@ +name: test-samples + +on: + pull_request: + push: + branches: [ develop, main ] + +env: + DOTNET_VERSION: '6.x' + +jobs: + run-samples: + runs-on: ${{ matrix.os }} + defaults: + run: + shell: bash + strategy: + matrix: + os: [windows-latest, ubuntu-latest, macos-14] + dir: []