Skip to content

add GH actions

add GH actions #1

Workflow file for this run

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

Check failure on line 26 in .github/workflows/akkaTests.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/akkaTests.yml

Invalid workflow file

You have an error in your yaml syntax on line 26
- name: Test - Release
run: dotnet test --configuration Release --no-restore
working-directory: ./test/Akka.Persistence.RavenDB.Tests