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: Pull Request
on:
pull_request:
branches: [ main, master, develop ]
jobs:
build:
name: Build and Test
runs-on: ubuntu-latest
strategy:
matrix:
os: [ubuntu-latest, windows-latest, macos-latest]
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
- name: Check code formatting
run: dotnet format --verify-no-changes --verbosity diagnostic