Skip to content

Fix issue with deployment of docs in CI #53

Fix issue with deployment of docs in CI

Fix issue with deployment of docs in CI #53

Workflow file for this run

name: CI
on:
push:
branches:
- master
pull_request:
branches:
- master
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, windows-latest]
steps:
- name: Checkout repository
uses: actions/checkout@v3
- name: Set up .NET Core SDK
uses: actions/setup-dotnet@v3
with:
dotnet-version: |
5.0.x
6.0.x
7.0.x
8.0.x
- name: Build
run: dotnet build PrinceXML.Wrapper
- name: Test
run: dotnet test PrinceXML.Wrapper.Tests