Skip to content

Merge pull request #20 from barzin144/bugfix/handel-invalid-refresh-t… #36

Merge pull request #20 from barzin144/bugfix/handel-invalid-refresh-t…

Merge pull request #20 from barzin144/bugfix/handel-invalid-refresh-t… #36

Workflow file for this run

name: Build
on:
workflow_dispatch: {}
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Setup .NET Core
uses: actions/setup-dotnet@v3
with:
dotnet-version: 8.0
- name: Install dependencies
run: dotnet restore
- name: Build
run: dotnet build --configuration Release --no-restore
mutation-testing:
needs: build
if: ${{ always() && contains(join(needs.*.result, ','), 'success') }}.
uses: ./.github/workflows/stryker.yml
secrets: inherit
testing:
needs: build
if: ${{ always() && contains(join(needs.*.result, ','), 'success') }}.
uses: ./.github/workflows/unit-test.yml
secrets: inherit