SWI-7186 Update CODEOWNERS #283
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: Test | |
| on: | |
| pull_request: | |
| workflow_dispatch: | |
| jobs: | |
| test: | |
| name: Test | |
| runs-on: ${{ matrix.os }} | |
| strategy: | |
| matrix: | |
| os: [windows-2022, windows-2019, ubuntu-20.04, ubuntu-22.04] | |
| dotnet: [6.0.x, 7.0.x] | |
| steps: | |
| - name: Checkout repo | |
| uses: actions/checkout@v3 | |
| - name: Setup .NET | |
| uses: actions/setup-dotnet@v3 | |
| with: | |
| dotnet-version: ${{ matrix.dotnet }} | |
| - name: Run functional tests | |
| env: | |
| # Required for multiple target frameworks in the StandardTests project. | |
| DOTNET: ${{ matrix.dotnet }} | |
| run: dotnet test Bandwidth.Iris.Tests | |
| - name: Notify Slack of failures | |
| uses: Bandwidth/[email protected] | |
| if: failure() && !github.event.pull_request.draft | |
| with: | |
| job-status: ${{ job.status }} | |
| slack-bot-token: ${{ secrets.SLACK_BOT_TOKEN }} | |
| slack-channel: ${{ secrets.SLACK_CHANNEL }} |