Bump Akka.Cluster.Hosting from 1.5.30.1 to 1.5.31 in /src/WebApiTemplate #968
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: pr_validation | |
on: | |
push: | |
branches: | |
- master | |
- dev | |
pull_request: | |
branches: | |
- master | |
- dev | |
merge_group: | |
jobs: | |
build-templates: | |
name: BuildTemplate | |
runs-on: ubuntu-latest | |
steps: | |
- name: "Checkout" | |
uses: actions/checkout@v4 | |
with: | |
lfs: true | |
fetch-depth: 0 | |
- name: "Install .NET SDK" | |
uses: actions/setup-dotnet@v4 | |
with: | |
dotnet-version: | | |
8.0.x | |
global-json-file: "./global.json" | |
- name: "dotnet pack" | |
run: dotnet pack -c Release | |
test: | |
name: Test-${{matrix.template}}-${{matrix.os}} | |
runs-on: ${{matrix.os}} | |
strategy: | |
matrix: | |
template: ["WebApiTemplate", "AkkaConsoleTemplate", "AkkaStreamsTemplate"] | |
os: [ubuntu-latest, windows-latest] | |
steps: | |
- name: "Checkout" | |
uses: actions/checkout@v4 | |
with: | |
lfs: true | |
fetch-depth: 0 | |
- name: "Install .NET SDK" | |
uses: actions/setup-dotnet@v4 | |
with: | |
dotnet-version: | | |
8.0.x | |
global-json-file: "./global.json" | |
- name: "dotnet build" | |
run: dotnet build -c Release | |
working-directory: src/${{matrix.template}} | |
- name: "dotnet test" | |
run: dotnet test -c Release | |
working-directory: src/${{matrix.template}} | |
docker: | |
name: Docker-${{matrix.template}} | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
template: ["WebApiTemplate"] | |
steps: | |
- name: "Checkout" | |
uses: actions/checkout@v4 | |
with: | |
lfs: true | |
fetch-depth: 0 | |
- name: "Install .NET SDK" | |
uses: actions/setup-dotnet@v4 | |
with: | |
dotnet-version: | | |
8.0.x | |
global-json-file: "./global.json" | |
- name: "dotnet docker" | |
run: dotnet publish --os linux --arch x64 -c Release -p:PublishProfile=DefaultContainer | |
working-directory: src/${{matrix.template}} | |