Skip to content

Upgrade Feedly SDK to bleeding edge .NET #1

Upgrade Feedly SDK to bleeding edge .NET

Upgrade Feedly SDK to bleeding edge .NET #1

Workflow file for this run

name: CI
on:
push:
branches: [ main, master, develop ]
pull_request:
branches: [ main, master, develop ]
jobs:
build:
name: Build and Test
runs-on: ubuntu-latest
strategy:
matrix:
dotnet-version: ['10.0.x']
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Setup .NET
uses: actions/setup-dotnet@v4
with:
dotnet-version: ${{ matrix.dotnet-version }}
- name: Restore dependencies
run: dotnet restore
- name: Build
run: dotnet build --no-restore --configuration Release
- name: Run tests
run: dotnet test --no-build --configuration Release --verbosity normal --logger "trx;LogFileName=test-results.trx" --collect:"XPlat Code Coverage"
continue-on-error: false
- name: Upload test results
uses: actions/upload-artifact@v4
if: always()
with:
name: test-results-${{ matrix.dotnet-version }}
path: '**/test-results.trx'
- name: Upload coverage reports
uses: codecov/codecov-action@v4
if: always()
with:
files: '**/coverage.cobertura.xml'
fail_ci_if_error: false