diff --git a/.github/workflows/workflow.yml b/.github/workflows/workflow.yml new file mode 100644 index 0000000..5b7f6ad --- /dev/null +++ b/.github/workflows/workflow.yml @@ -0,0 +1,27 @@ +name: .NET + +on: + push: + branches: [ "master" ] + pull_request: + branches: [ "master" ] + +jobs: + build: + + runs-on: ubuntu-latest + + steps: + - uses: actions/checkout@v3 + - name: Setup .NET + uses: actions/setup-dotnet@v3 + with: + dotnet-version: 6.0.x + - name: Restore dependencies + run: dotnet restore + - name: Build + run: dotnet build --no-restore + - name: Test + run: dotnet test --no-build --verbosity normal + - name: Benchmark + run: dotnet run -c Release --project Benchmarks/Benchmarks.csproj diff --git a/.idea/.idea.StringExtension/.idea/vcs.xml b/.idea/.idea.StringExtension/.idea/vcs.xml new file mode 100644 index 0000000..94a25f7 --- /dev/null +++ b/.idea/.idea.StringExtension/.idea/vcs.xml @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file