Skip to content

Commit

Permalink
add GH actions
Browse files Browse the repository at this point in the history
  • Loading branch information
karmeli87 committed Jun 17, 2024
1 parent daf1a7d commit 6228bdd
Showing 1 changed file with 30 additions and 0 deletions.
30 changes: 30 additions & 0 deletions .github/workflows/akkaTests.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
name: tests/akka

on:
push:
branches:
- main

pull_request:
branches:
- main
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2

- name: Setup .NET
uses: actions/setup-dotnet@v1
with:
dotnet-version: '8.0'

- name: Install dependencies
run: dotnet restore

- name: Build dotnet
run: dotnet build

- name: Test - Release
run: dotnet test --configuration Release --no-restore
working-directory: ./test/Akka.Persistence.RavenDB.Tests

0 comments on commit 6228bdd

Please sign in to comment.