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 #37
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: .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 |