Skip to content

Bump AkkaVersion from 1.5.30 to 1.5.31 (#517) #1337

Bump AkkaVersion from 1.5.30 to 1.5.31 (#517)

Bump AkkaVersion from 1.5.30 to 1.5.31 (#517) #1337

Workflow file for this run

name: pr_validation
on:
push:
branches:
- master
- dev
- main
pull_request:
branches:
- master
- dev
- main
jobs:
test:
name: Test-${{matrix.os}}
runs-on: ${{matrix.os}}
strategy:
matrix:
os: [ubuntu-latest, windows-latest]
steps:
- name: "Checkout"
uses: actions/[email protected]
with:
lfs: true
fetch-depth: 0
- name: "Install .NET SDK"
uses: actions/[email protected]
with:
global-json-file: "./global.json"
- name: "Update release notes"
shell: pwsh
run: |
./build.ps1
- name: "dotnet build"
run: dotnet build -c Release
# .NET Framework tests can't run reliably on Linux, so we only do .NET 8
- name: "dotnet test"
shell: bash
run: dotnet test -c Release
- name: "dotnet pack"
run: dotnet pack -c Release -o ./bin/nuget