chore: add custom endpoint to release process #1241
Workflow file for this run
This file contains hidden or 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: Build, Unit Test, and Linting | |
| on: | |
| push: | |
| branches: | |
| - main | |
| pull_request: | |
| branches: | |
| - '*' | |
| jobs: | |
| build: | |
| runs-on: windows-latest | |
| steps: | |
| - name: Checkout code | |
| uses: actions/checkout@v4 | |
| - name: Setup .NET 8.0 | |
| uses: actions/setup-dotnet@v4 | |
| with: | |
| dotnet-version: '8.0.407' | |
| - name: Run dotnet format | |
| run: dotnet format AwsWrapperDataProvider.sln --verify-no-changes --verbosity diagnostic | |
| - name: Build | |
| run: dotnet build | |
| - name: Run unit tests | |
| run: dotnet test --filter Category!=Integration --no-build |