Skip to content

Bump AkkaVersion from 1.5.8 to 1.5.11 #497

Bump AkkaVersion from 1.5.8 to 1.5.11

Bump AkkaVersion from 1.5.8 to 1.5.11 #497

Workflow file for this run

name: build and test
on:
push:
pull_request:
branches: [ master,dev ]
paths:
- '**.cs'
- '**.csproj'
env:
DOTNET_VERSION: '6.0' # The .NET SDK version to use
jobs:
build-and-test:
name: build-and-test-${{matrix.os}}
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [windows-latest, ubuntu-latest]
steps:
- uses: actions/checkout@v3
- name: Setup .NET Core
uses: actions/setup-dotnet@v3
with:
dotnet-version: ${{ env.DOTNET_VERSION }}
- name: Install FAKE
run: dotnet tool install fake-cli -g
- name: Run FAKE
working-directory: build
run: fake run build.fsx --target "Default"