This repository is a GitHub template for a basic F# application using FsUnit for testing. It can be used for code katas
You can either clone directly, open in codespace or create a new repository from this template.
# clone the template
git clone https://github.com/babali42/fsharp-template-with-fsunit-tests.git
cd fsharp-template-with-fsunit-tests
# restore dependencies and build
dotnet restore
dotnet build
# run tests
dotnet testThis project works out of the box in GitHub Codespaces:
- Click the Code button and choose Open with Codespaces.
- Once the container loads, run the same build/test commands shown above.
- In GitHub, navigate to this repository.
- Click Use this template and follow the prompts to create a new repository under your account or organization.
- Clone the newly created repository and follow the setup steps above.
App.fs- main application codeTest.fs- sample FsUnit testsfsharp-template-with-tests.fsproj- project file
I use renovate to update the dependencies as soon as possible.