Skip to content
This repository has been archived by the owner on Oct 19, 2024. It is now read-only.

Updated to Akka.Persistence v1.5.20 and Oracle Data Provider for .NET to v23.4.0 #36

Updated to Akka.Persistence v1.5.20 and Oracle Data Provider for .NET to v23.4.0

Updated to Akka.Persistence v1.5.20 and Oracle Data Provider for .NET to v23.4.0 #36

Workflow file for this run

name: .NET
on:
push:
paths-ignore:
- 'docs/**'
branches:
- dev
pull_request:
workflow_dispatch:
concurrency:
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
cancel-in-progress: true
jobs:
build:
runs-on: ubuntu-latest
if: github.repository == 'ismaelhamed/akka.persistence.oracle'
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Setup .NET
uses: actions/setup-dotnet@v4
with:
dotnet-version: 8.0.x
- name: Restore dependencies
run: dotnet restore
working-directory: src/
- name: Build
run: dotnet build --no-restore --configuration Release ./src
- name: Test
run: dotnet test --no-build --configuration Release --logger GitHubActions ./src