Bump TwitchLib.Client from 4.0.0-preview-d4d9679aaa93409ab2b31471d17673bb5e06504c to 4.0.0-preview-fd131763416cb9f1a31705ca609566d7e7e7fac8 #1687
Workflow file for this run
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 | |
on: [push, pull_request] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
dotnet-sdk-version: | |
- 8.0.101 # currently running on stream | |
- 8.0.x | |
steps: | |
- name: Setup .NET | |
uses: actions/setup-dotnet@v4 | |
with: | |
dotnet-version: ${{ matrix.dotnet-sdk-version }} | |
- uses: actions/checkout@v2 | |
- name: MongoDB in GitHub Actions | |
uses: supercharge/[email protected] | |
with: | |
mongodb-version: 4.2.3 | |
mongodb-replica-set: rs0 | |
- name: Test with dotnet | |
run: dotnet test |