Skip to content

Create LICENSE

Create LICENSE #43

Workflow file for this run

name: E2E
on:
push:
branches:
- master
tags:
- 'v*'
pull_request:
branches: [ master ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Setup .NET
uses: actions/setup-dotnet@v1
with:
dotnet-version: 5.0.x
- name: Start Nebula
run: docker-compose -f docker-compose.yaml up -d
- name: Restore dependencies
run: dotnet restore
- name: Build
run: dotnet build --no-restore
- name: Test
run: dotnet test --no-build --verbosity normal