Skip to content

Added event endpoint #7

Added event endpoint

Added event endpoint #7

Workflow file for this run

name: feature
on:
push:
branches:
- 'feature/**'
jobs:
build:
name: Build
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Setup .NET 6.x
uses: actions/setup-dotnet@v1
with:
# Semantic version range syntax or exact version of a dotnet version
dotnet-version: '6.x'
- name: Build
run: dotnet build
#- name: Test with the dotnet CLI
# run: dotnet test