PluralKit/.github/workflows/dotnetcore.yml

18 lines
316 B
YAML
Raw Normal View History

2019-10-26 13:18:42 +00:00
name: .NET Core
2019-10-27 11:35:13 +00:00
on: [push, pull_request]
2019-10-26 13:18:42 +00:00
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- name: Setup .NET Core
uses: actions/setup-dotnet@v1
with:
dotnet-version: 2.2.108
- name: Build with dotnet
run: dotnet build --configuration Release