Skip to content

Commit

Permalink
Merge pull request #183 from janusw/gha_mac
Browse files Browse the repository at this point in the history
  • Loading branch information
xfischer committed Aug 12, 2024
2 parents 24d4947 + 58e29f1 commit 774cc85
Showing 1 changed file with 19 additions and 0 deletions.
19 changes: 19 additions & 0 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,25 @@ jobs:
- name: Test
run: dotnet test src/GeoJSON.Net.sln --no-restore --verbosity normal

macBuild:
runs-on: macos-latest
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Setup .NET Core
uses: actions/setup-dotnet@v4
with:
dotnet-version: |
6.0.x
8.0.x
- name: Install dependencies
run: dotnet restore src/GeoJSON.Net.sln
- name: Build
run: dotnet build src/GeoJSON.Net.sln -c Release --no-restore -p:Version=$(git describe --tags)
- name: Test
run: dotnet test src/GeoJSON.Net.sln --no-restore --verbosity normal

winBuild:
runs-on: windows-latest
steps:
Expand Down

0 comments on commit 774cc85

Please sign in to comment.