Skip to content

chore: update version #40

chore: update version

chore: update version #40

Workflow file for this run

name: Build & Test
concurrency:
group: ${{ github.head_ref || github.run_id }}
cancel-in-progress: true
on:
workflow_dispatch:
push:
branches:
- main
paths:
- src/**
- tests/**
pull_request:
branches:
- main
paths:
- src/**
- tests/**
jobs:
build-test:
runs-on: ubuntu-latest
timeout-minutes: 15
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Build
run: dotnet build --configuration Release
- name: Test
run: dotnet test --configuration Release --no-build