Skip to content

Alerts: Support cheers and some channel point redemptions #89

Alerts: Support cheers and some channel point redemptions

Alerts: Support cheers and some channel point redemptions #89

Workflow file for this run

name: LukeBot CI
on:
push:
branches: [ $default-branch, devel ]
pull_request:
branches: [ devel ]
jobs:
linux-build:
name: Linux Build
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Setup .NET
uses: actions/setup-dotnet@v2
with:
dotnet-version: 6.0.x
- name: Restore dependencies
run: dotnet restore
- name: Build Release
run: dotnet build --no-restore -c Release
- name: Build Debug
run: dotnet build --no-restore -c Debug
- name: Test
run: dotnet test LukeBot.sln
windows-build:
name: Windows Build
runs-on: windows-latest
steps:
- uses: actions/checkout@v3
- name: Setup .NET
uses: actions/setup-dotnet@v2
with:
dotnet-version: 6.0.x
- name: Restore
run: dotnet restore LukeBot.sln
- name: Build Release
run: dotnet build --no-restore -c Release
- name: Build Debug
run: dotnet build --no-restore -c Debug
- name: Test
run: dotnet test LukeBot.sln