From 656d30591eced7016c10f2b9cc53757fea05ee4e Mon Sep 17 00:00:00 2001 From: Adam Boniecki <20281641+abonie@users.noreply.github.com> Date: Mon, 9 Jun 2025 23:30:36 +0200 Subject: [PATCH] Update copilot-setup-steps.yml with dotnet tool restore Make copilot run dotnet tool restore during setup so it can use fantomas --- .github/workflows/copilot-setup-steps.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.github/workflows/copilot-setup-steps.yml b/.github/workflows/copilot-setup-steps.yml index abef568c5c5..2025949999f 100644 --- a/.github/workflows/copilot-setup-steps.yml +++ b/.github/workflows/copilot-setup-steps.yml @@ -22,3 +22,7 @@ jobs: env: CI: false run: dotnet build ./FSharp.Compiler.Service.sln --verbosity quiet + - name: Restore dotnet tools + env: + CI: false + run: dotnet tool restore