Skip to content

build(deps): bump Delegate.ExpressionEngine from 4.0.0 to 4.1.2 #41

build(deps): bump Delegate.ExpressionEngine from 4.0.0 to 4.1.2

build(deps): bump Delegate.ExpressionEngine from 4.0.0 to 4.1.2 #41

Workflow file for this run

name: Build
on:
pull_request:
types: [ assigned, opened, synchronize, reopened ]
push:
branches:
- 'feature/**'
jobs:
test:
runs-on: windows-latest
name: Testing
strategy:
matrix:
include:
- framework: "net6.0"
version: 6.0.x
- framework: net8.0
version: 8.0.x
steps:
- name: Checkout code base
uses: actions/checkout@v4
- uses: actions/setup-dotnet@v4
with:
dotnet-version: 8.0.x
- name: Run tests
run: dotnet test --verbosity normal -f ${{ matrix.framework }}
build:
runs-on: windows-latest
name: Building
strategy:
matrix:
include:
- framework: "net6.0"
version: 6.0.x
- framework: net8.0
version: 8.0.x
steps:
- name: Checkout code base
uses: actions/checkout@v4
- uses: actions/setup-dotnet@v4
with:
dotnet-version: 8.0.x
- name: Cleaning
run: dotnet clean
- name: Restore NuGet packages
run: dotnet restore WorkflowEngine.sln
- name: Build solution
run: dotnet build -o ../build/${{ matrix.dotnet }} -c Release --no-restore -m:1 -f ${{ matrix.framework }}
- name: Archive build to artifacts
uses: actions/upload-artifact@v2
with:
name: build
path: |
build/${{ matrix.framework }}/*
retention-days: 5