Timothy Schenk
60d24be3b0
Some checks failed
Test if Server can be built / build-server (push) Failing after 15s
18 lines
450 B
YAML
18 lines
450 B
YAML
name: Test if Server can be built
|
|
run-name: ${{ gitea.actor }} is building the Server application
|
|
on: [ push ]
|
|
|
|
jobs:
|
|
build-server:
|
|
steps:
|
|
- uses: actions/checkout@v3
|
|
- name: Setup dotnet
|
|
uses: https://github.com/actions/setup-dotnet@v3
|
|
with:
|
|
dotnet-version: |
|
|
7.0
|
|
- run: |
|
|
dotnet tool install Nuke.GlobalTool --global
|
|
export PATH="$PATH:/root/.dotnet/tools"
|
|
ls
|
|
nuke
|