Skip to content

Commit

Permalink
Merge pull request #2021 from jnyrup/ci_on_linux_and_mac
Browse files Browse the repository at this point in the history
Enable CI unit tests on linux and mac
  • Loading branch information
jnyrup committed Oct 24, 2022
2 parents 5772c29 + 0bc408a commit 7effaeb
Showing 1 changed file with 23 additions and 0 deletions.
23 changes: 23 additions & 0 deletions .github/workflows/build.yml
Expand Up @@ -46,3 +46,26 @@ jobs:
uses: actions/upload-artifact@v3
with:
path: ./Artifacts/*
only-unit-tests:

strategy:
matrix:
os: [ubuntu-22.04, macos-12]

runs-on: ${{ matrix.os }}

steps:
- uses: actions/checkout@v3
with:
fetch-depth: 0

- name: Setup .NET SDKs
uses: actions/setup-dotnet@v3
with:
dotnet-version: |
2.1.x
3.1.x
6.0.x
- name: Run NUKE
run: ./build.sh UnitTests

0 comments on commit 7effaeb

Please sign in to comment.