archanox/RGBDS2CIL

View on GitHub
.github/workflows/dotnet.yml

Summary

Maintainability
Test Coverage
name: .NET

on:
  push:
    branches: [ master ]
  pull_request:
    branches: [ master ]

jobs:
  build:

    runs-on: ubuntu-latest

    steps:
    - uses: actions/checkout@v4
      with:
        fetch-depth: 0  # Shallow clones should be disabled for a better relevancy of analysis
    - name: Setup .NET
      uses: actions/setup-dotnet@v4
      with:
        dotnet-version: '6.0.x'
    - name: Clean
      shell: bash
      run: |
        dotnet clean --configuration Release
        dotnet nuget locals all --clear
    - name: Restore dependencies
      run: dotnet restore
    - name: Build
      run: dotnet build --configuration Release --no-restore
    - name: CodeCov
      uses: codecov/codecov-action@v4
      with:
        token: ${{ secrets.CODECOV_TOKEN }}
    - name: Test
      run: dotnet test --no-restore --verbosity normal
    - name: dotnet-tests-report
      uses: zyborg/dotnet-tests-report@v1.4.4
      with:
        project_path: Tests          
        report_name: tests
        report_title: Tests
        github_token: ${{ secrets.GITHUB_TOKEN }}
   # - name: Coveralls
   #   uses: coverallsapp/github-action@master
   #   with:
   #     github-token: ${{ secrets.GITHUB_TOKEN }}