Skip to content

Add workflow for build/formatting checks #1

Add workflow for build/formatting checks

Add workflow for build/formatting checks #1

Workflow file for this run

name: Build
on:
push:
branches:
- master
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-dotnet@v4
with:
dotnet-version: '8.x'
- run: dotnet build
format:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-dotnet@v4
with:
dotnet-version: '8.x'
- name: Install Tools
run: dotnet tool restore
- run: dotnet fantomas --check .