Removed RegexOptions.Compile flag to avoid .Net 8 compiled regex misb… #1628
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 |