Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
28 changes: 28 additions & 0 deletions .github/workflows/build_and_test_macos.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
name: Build and test [MacOS]

on:
push:
branches: [ master ]
pull_request:
branches: [ master ]

jobs:
build:
runs-on: macos-latest
steps:
- uses: actions/checkout@master

- name: Set up dotnet core
uses: actions/setup-dotnet@v4
with:
dotnet-version: |
2.1.x
6.0.x
8.0.x

# Build the release build
- name: Build the solution
run: dotnet build -c Release src/UglyToad.PdfPig.sln

- name: Run the tests
run: dotnet test -c Release src/UglyToad.PdfPig.sln
Loading