Skip to content

[Fix #29] Fixed an issue causing relative path concatenation to fail as the appended path starts with /; indicating an absolute location. #35

[Fix #29] Fixed an issue causing relative path concatenation to fail as the appended path starts with /; indicating an absolute location.

[Fix #29] Fixed an issue causing relative path concatenation to fail as the appended path starts with /; indicating an absolute location. #35

Workflow file for this run

name: 'Verify Compilation'
on:
workflow_dispatch:
push:
branches:
- main
pull_request:
types: [ synchronize, opened, reopened, ready_for_review ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Setup dotnet
uses: actions/setup-dotnet@v3
with:
dotnet-version: '6.0.x'
- name: Install dependencies
run: dotnet restore
- name: Build
run: dotnet build