Bump TwitchLib.Client from 3.2.5-preview-eb210b24b724f0df6e3ce9566fe25ba3ce6ab13f to 3.3.1 #372
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: CI Build Ravenfall-Server | |
on: | |
push: | |
branches: [ master ] | |
pull_request: | |
branches: [ master ] | |
jobs: | |
build-dotnet: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Setup .NET Core | |
uses: actions/setup-dotnet@v1 | |
with: | |
dotnet-version: 5.0.x | |
- name: Install dependencies | |
run: dotnet restore "Ravenfall Server.sln" | |
- name: Build | |
run: dotnet build --configuration Release --no-restore "Ravenfall Server.sln" |