Skip to content

#197 Produce AsyncAPI documents at build time (AsyncAPI.Saunter.Generator.Build) #366

#197 Produce AsyncAPI documents at build time (AsyncAPI.Saunter.Generator.Build)

#197 Produce AsyncAPI documents at build time (AsyncAPI.Saunter.Generator.Build) #366

Workflow file for this run

name: ci
on:
push:
branches:
- main
pull_request:
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: setup build
uses: ./.github/npm
- name: Run dotnet build src
run: dotnet build ./src/Saunter-src.slnf --configuration Debug
- name: Run dotnet build all
run: dotnet build --configuration Debug
- name: unit test
run: dotnet test --no-build --configuration Debug
fmt:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: setup dotnet
uses: ./.github/dotnet
- name: dotnet format check
run: dotnet format --verify-no-changes --no-restore *.sln
env:
PATH: ${{ github.env.PATH }}:/home/runner/.dotnet/tools