Skip to content

feat!: modernize SDK contract, add CI tests, and improve migration docs #3

feat!: modernize SDK contract, add CI tests, and improve migration docs

feat!: modernize SDK contract, add CI tests, and improve migration docs #3

Workflow file for this run

name: CI
on:
pull_request:
push:
branches:
- main
workflow_dispatch:
jobs:
build-and-test:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Setup .NET
uses: actions/setup-dotnet@v4
with:
dotnet-version: "10.0.x"
- name: Restore dependencies
run: dotnet restore
- name: Build
run: dotnet build facturapi-net.sln --configuration Release --no-restore
- name: Test
run: dotnet test FacturapiTest/FacturapiTest.csproj --configuration Release --no-build