mhf-server/.github/workflows/build.yaml
2019-11-24 19:43:35 +08:00

13 lines
311 B
YAML

name: Build
on: [pull_request]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- name: Setup .NET Core
uses: actions/setup-dotnet@v1
with:
dotnet-version: 3.0.100
- name: Build Project
run: dotnet build --configuration Release