Skip to content

Bump the nuget group with 1 update #60

Bump the nuget group with 1 update

Bump the nuget group with 1 update #60

Workflow file for this run

name: .NET Build
on:
push:
branches:
- '*'
pull_request:
branches:
- '*'
workflow_dispatch:
jobs:
build:
name: Build & Test
runs-on: ubuntu-latest
permissions:
contents: read
steps:
- name: Checkout Repo
uses: actions/checkout@v6
- name: Setup Environment
uses: ./.github/actions/setup-env
- name: Build
run: dotnet build --configuration Debug --no-incremental
- name: Test
run: |
dotnet run --project ./Shipyard/Shipyard.csproj -- --config ./Shipyard.Demo/shipyard.json --output ./publish
- name: Output Publish Directory
if: always()
run: |
tree ./publish
- name: Output Working Directory
if: always()
run: |
tree /tmp/shipyard