LANCommander/.github/workflows/LANCommander.yml

27 lines
595 B
YAML
Raw Normal View History

2023-04-03 17:24:47 -05:00
# 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
2023-04-03 17:34:11 -05:00
name: LANCommander
2023-04-03 17:24:47 -05:00
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Setup .NET
uses: actions/setup-dotnet@v3
with:
dotnet-version: 6.0.x
- name: Restore dependencies
run: dotnet restore
- name: Build
2023-04-03 17:34:11 -05:00
run: dotnet .\LANCommander\LANCommander.csproj build --no-restore