diff --git a/.github/workflows/fsharp.yaml b/.github/workflows/fsharp.yaml index c5aad7f..0eb71f3 100644 --- a/.github/workflows/fsharp.yaml +++ b/.github/workflows/fsharp.yaml @@ -19,10 +19,6 @@ jobs: - name: Setup dotnet uses: actions/setup-dotnet@v4 - name: Build - run: dotnet build Tictactoe.Lib - - name: Test - run: dotnet test Tictactoe.Tests + run: dotnet build - name: Run - run: | - cd Tictactoe.Prog - dotnet run -- -X 4 -O 4 + run: dotnet run -- -X 4 -O 4 diff --git a/README.md b/README.md index f4f9d8f..c6d1469 100644 --- a/README.md +++ b/README.md @@ -441,9 +441,7 @@ Version using [F#](https://fsharp.org/). To compile and run: ```bash -dotnet build Tictactoe.Lib -dotnet test Tictactoe.Tests -cd Tictactoe.Prog +dotnet build dotnet run -- -X 4 -O 4 ``` diff --git a/tictactoe_fsharp/TicTacToe/Program.fs b/tictactoe_fsharp/Program.fs similarity index 100% rename from tictactoe_fsharp/TicTacToe/Program.fs rename to tictactoe_fsharp/Program.fs diff --git a/tictactoe_fsharp/TicTacToe/TicTacToe.fsproj b/tictactoe_fsharp/TicTacToe.fsproj similarity index 100% rename from tictactoe_fsharp/TicTacToe/TicTacToe.fsproj rename to tictactoe_fsharp/TicTacToe.fsproj