Skip to content

und - Updated GH workflows for snupkg #9

und - Updated GH workflows for snupkg

und - Updated GH workflows for snupkg #9

Workflow file for this run

name: Build Project (macOS)
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
build:
runs-on: macos-latest
steps:
- uses: actions/checkout@v3
with:
submodules: 'true'
ref: ${{ github.ref }}
- name: Setup .NET
uses: actions/setup-dotnet@v3
with:
dotnet-version: '8.0.x'
- name: Solution Compilation
run: dotnet build --configuration Debug
- name: Testing
run: dotnet test --configuration Debug
- uses: actions/upload-artifact@v3
if: success() || failure()
with:
name: txt-build
path: "Nettify/bin/Debug/"