Skip to content

ci: add .NET build and test steps #15

ci: add .NET build and test steps

ci: add .NET build and test steps #15

Workflow file for this run

name: CI
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
build-and-test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Install g++
run: sudo apt-get update && sudo apt-get install -y g++
- name: Compile and Run C++ Tests
run: g++ -std=c++20 -g -o crdt tests.cpp && ./crdt
- name: Setup .NET
uses: actions/setup-dotnet@v1
with:
dotnet-version: '6.0.x' # Specify the .NET version you're using
- name: Restore dependencies
run: dotnet restore
- name: Build C# project
run: dotnet build --no-restore
- name: Run C# Tests
run: dotnet run --project crdt-lite.csproj