Skip to content

Update to v0.0.2

Update to v0.0.2 #65

Workflow file for this run

name: CI
on:
push:
branches:
- '*'
- '!main'
defaults:
run:
shell: pwsh
jobs:
ci:
name: CI
runs-on: Ubuntu-Latest
steps:
- name: Checkout Repository
uses: actions/checkout@v3
- name: Setup .NET
uses: actions/setup-dotnet@v3
with:
dotnet-version: "8.x.x"
- name: Restore Project
run: ./Setup.ps1
- name: Check Code Formatting
run: dotnet fantomas . --check
- name: Run Test Suite
run: dotnet test