#197 Produce AsyncAPI documents at build time (AsyncAPI.Saunter.Generator.Build) #350
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |