Skip to content

Merge branch 'master' of https://github.com/Bykiev/ncalc #2

Merge branch 'master' of https://github.com/Bykiev/ncalc

Merge branch 'master' of https://github.com/Bykiev/ncalc #2

Workflow file for this run

name: .NET
on:
push:
branches:
- master
- release/*
pull_request:
branches:
- master
- release/*
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout source
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Setup .NET
uses: actions/setup-dotnet@v4
with:
dotnet-version: |
6.0.x
8.0.x
- name: Build
run: dotnet build src/NCalc/NCalc.csproj
- name: Test
run: dotnet test --verbosity normal