TwitchApi error handling: log actual twitch responses on errors #1537
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: test-publish | |
on: [push, pull_request] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Setup .NET | |
uses: actions/setup-dotnet@v4 | |
with: | |
dotnet-version: 8.0.x | |
- uses: actions/checkout@v2 | |
- name: Try publishing and running dummy mode | |
run: | | |
cd TPP.Core | |
dotnet run -- gendefaultconfig --outfile=config.json | |
dotnet publish -c Release | |
timeout --preserve-status -k1 3 dotnet ../artifacts/publish/TPP.Core/release/TPP.Core.dll start -m dummy || exit_code=$? | |
if [ $exit_code -ne 143 ]; then | |
echo "expected exit code 143, which means the program handled SIGTERM, but got $exit_code" | |
exit 1 | |
fi |