Skip to content

refactor: update and reorganized README.md and CONTRIBUTING.md #310

refactor: update and reorganized README.md and CONTRIBUTING.md

refactor: update and reorganized README.md and CONTRIBUTING.md #310

Workflow file for this run

# This workflow will build a .NET project
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-net
name: Build
on:
push:
pull_request:
jobs:
build:
runs-on: ubuntu-latest
steps:
# Clone repo and submodules
- uses: actions/checkout@v4
with:
submodules: true
# Install .NET
- name: Setup .NET
uses: actions/setup-dotnet@v4
with:
dotnet-version: 8.x
# For caching purposes, restore dependencies in a dedicated step
- name: Restore dependencies
run: dotnet restore
# Build
- name: Build
run: dotnet build --no-restore