name: build on: push: branches: [ main ] pull_request: branches: [ main, develop ] jobs: build: runs-on: ubuntu-latest steps: # extract branch name - name: Extract branch name if: github.event_name != 'pull_request' shell: bash run: echo "BRANCH_NAME=$(echo ${GITHUB_REF#refs/heads/})" >> $GITHUB_ENV id: extract_branch # extract branch name on pull request - name: Extract branch name on pull request if: github.event_name == 'pull_request' run: echo "BRANCH_NAME=$(echo ${GITHUB_HEAD_REF})" >> $GITHUB_ENV # print branch name - name: Get branch name run: echo "The branch name is ${{ env.BRANCH_NAME }}" - uses: actions/checkout@v3 - name: Setup .NET Core uses: actions/setup-dotnet@v2 with: dotnet-version: 6.0.x - name: Install minicover run: dotnet tool install --global minicover --version 3.4.4 - name: Install dependencies run: dotnet restore RulesEngine.sln - name: Build run: dotnet build RulesEngine.sln --configuration Release --no-restore - name: Instrument run: minicover instrument - name: Test run: dotnet test RulesEngine.sln --no-build --configuration Release --verbosity m - name: Uninstrument run: minicover uninstrument - name: Report run: minicover report --threshold 95 if: ${{ github.event_name == 'pull_request' }} - name: Report coveralls run: minicover coverallsreport --repo-token ${{ secrets.COVERALLS_TOKEN }} --branch ${{ env.BRANCH_NAME }} if: ${{ github.event_name == 'push' }}