Skip to content

switch to File Scope Namespace, and more #55

switch to File Scope Namespace, and more

switch to File Scope Namespace, and more #55

name: Check TwitchLib.Communication PR Build Status
on:
pull_request:
branches: [ dev, master ]
jobs:
check-buildstatus:
runs-on: ubuntu-latest
strategy:
matrix:
dotnet-version: [ '7.0.x' ]
steps:
- uses: actions/checkout@v3
- name: Setup .NET
uses: actions/setup-dotnet@v2
with:
dotnet-version: ${{ matrix.dotnet-version }}
- name: Restore dependencies
run: dotnet restore
- name: Build TwitchLib.Communication
run: dotnet build --no-restore --configuration Release
- name: Test
run: dotnet test --no-restore --verbosity normal