Skip to content

Add demo images (#53) #72

Add demo images (#53)

Add demo images (#53) #72

Workflow file for this run

name: CI
on:
push:
branches: ["main"]
pull_request:
jobs:
build-and-test:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup .NET
uses: actions/setup-dotnet@v4
with:
dotnet-version: 10.0.x
- name: Restore
run: dotnet restore RipSharp.sln
- name: Build
run: dotnet build --no-restore RipSharp.sln
- name: Test
run: dotnet test --no-build --verbosity normal RipSharp.sln