Skip to content

Fix project path

Fix project path #89

Workflow file for this run

# yaml-language-server: $schema=https://json.schemastore.org/github-workflow
name: Build
on:
push:
branches:
- "main"
paths-ignore:
- "README.md"
pull_request:
workflow_dispatch:
jobs:
build:
name: Build
runs-on: ubuntu-latest
strategy:
matrix:
project: [
"./src/Lib"
]
target-framwork: [
"net8.0",
"netstandard2.0",
]
env:
DOTNET_NOLOGO: true
steps:
- name: Checkout repository
uses: actions/checkout@v4
with:
submodules: true
- name: Setup dotnet SDK
uses: actions/setup-dotnet@v4
with:
global-json-file: global.json
- name: Run 'dotnet build'
run: dotnet build ${{ matrix.project }} --configuration Release --framework ${{ matrix.target-framwork }}