diff --git a/.config/dotnet-tools.json b/.config/dotnet-tools.json index 261f109..e906ead 100644 --- a/.config/dotnet-tools.json +++ b/.config/dotnet-tools.json @@ -2,12 +2,6 @@ "version": 1, "isRoot": true, "tools": { - "fake-cli": { - "version": "5.23.1", - "commands": [ - "fake" - ] - }, "fantomas": { "version": "5.0.6", "commands": [ diff --git a/.github/workflows/build.yaml b/.github/workflows/build.yaml index d0b9479..27c3034 100644 --- a/.github/workflows/build.yaml +++ b/.github/workflows/build.yaml @@ -13,7 +13,7 @@ jobs: matrix: # os: [ubuntu-latest, windows-latest, macOS-latest] os: [ubuntu-latest] - dotnet: [6.0.x] + dotnet: [7.0.x] runs-on: ${{ matrix.os }} steps: @@ -27,10 +27,10 @@ jobs: run: dotnet tool restore - name: Build - run: dotnet fake build + run: dotnet fsi build.fsx - name: Format(Chack) - run: dotnet fake build -t format.check + run: dotnet fsi build.fsx -t format.check - name: Test - run: dotnet fake build -t test + run: dotnet fsi build.fsx -t test