Skip to content

Adds output formatters #268

Adds output formatters

Adds output formatters #268

Workflow file for this run

name: Confix.Tool
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
jobs:
ci-build:
runs-on: ubuntu-latest
defaults:
run:
working-directory: ./src/Confix.Tool
steps:
- uses: actions/checkout@v3
- name: Setup .NET
uses: actions/setup-dotnet@v3
with:
global-json-file: ./global.json
- name: Restore dependencies
run: dotnet restore
- name: Build
run: dotnet build
- name: Test
run: dotnet test