Skip to content

chore: Remove deprecated integration tests, add modern samples, update snippets, CI, and docs #3

chore: Remove deprecated integration tests, add modern samples, update snippets, CI, and docs

chore: Remove deprecated integration tests, add modern samples, update snippets, CI, and docs #3

Workflow file for this run

name: "CodeQL"
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
schedule:
- cron: '0 6 * * 1'
permissions:
security-events: write
contents: read
jobs:
analyze:
name: Analyze C#
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Setup .NET
uses: actions/setup-dotnet@v4
with:
dotnet-version: |
8.0.x
9.0.x
10.0.x
- name: Install workloads
run: dotnet workload restore --project src/reactiveui.slnx
- name: Initialize CodeQL
uses: github/codeql-action/init@v4
with:
languages: csharp
build-mode: manual
- name: Build
run: dotnet build src/reactiveui.slnx -c Release -p:ReactiveUIAndroidTargets="" -p:ReactiveUIAppleTargets=""
- name: Perform CodeQL Analysis
uses: github/codeql-action/analyze@v4
with:
category: "/language:csharp"