fix(Commands): update fsharp.systemcommandline to get fixes #320
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: Build main | |
| on: | |
| push: | |
| branches: [main, dev] | |
| paths: | |
| - "src/**" | |
| - "tests/**" | |
| - "tools.fsx" | |
| - "esbuild-ci.fsx" | |
| - ".github/workflows/main.yml" | |
| - "*.sln" | |
| - "*.fsproj" | |
| - "Directory.Build.props" | |
| - "Directory.Packages.props" | |
| pull_request: | |
| branches: [main] | |
| paths: | |
| - "src/**" | |
| - "tests/**" | |
| - "tools.fsx" | |
| - "esbuild-ci.fsx" | |
| - ".github/workflows/main.yml" | |
| - "*.sln" | |
| - "*.fsproj" | |
| - "Directory.Build.props" | |
| - "Directory.Packages.props" | |
| env: | |
| DOTNET_SKIP_FIRST_TIME_EXPERIENCE: true | |
| DOTNET_CLI_TELEMETRY_OPTOUT: true | |
| concurrency: | |
| group: build | |
| cancel-in-progress: true | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| strategy: | |
| matrix: | |
| dotnet: [8.0.x, 9.0.x] | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Setup .NET Core | |
| uses: actions/setup-dotnet@v4 | |
| id: stepid | |
| with: | |
| dotnet-version: | | |
| 9.0.x | |
| 8.0.x | |
| - name: Install local tools | |
| run: dotnet tool restore | |
| - name: Restore Solution | |
| run: dotnet restore | |
| - name: Build | |
| run: dotnet fsi tools.fsx | |
| - name: Prepare Esbuild | |
| run: dotnet fsi esbuild-ci.fsx | |
| - name: Test | |
| run: dotnet fsi tools.fsx -- test |