Skip to content

#196 Publish a global dotnet tool (AsyncAPI.Saunter.Generator.Cli) #343

#196 Publish a global dotnet tool (AsyncAPI.Saunter.Generator.Cli)

#196 Publish a global dotnet tool (AsyncAPI.Saunter.Generator.Cli) #343

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
run: dotnet 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 *.sln
env:
PATH: ${{ github.env.PATH }}:/home/runner/.dotnet/tools
unit-test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: setup build
uses: ./.github/npm
- name: unit test
run: dotnet test --configuration Debug