Forge
yamlc88715b7
1name CI
2
3on
4 push:
5 branches: [main]
6 pull_request:
7 branches: [main]
8
9jobs
10 build:
11 runs-on: ubuntu-latest
12 steps:
13 - uses: actions/checkout@v6
14
15 - uses: actions/setup-dotnet@v5
16 with:
17 dotnet-version: 10.0.x
18
19 - name: Restore
20 run: dotnet restore AIGuiders.DotnetTools.sln
21
22 - name: Build
23 run: dotnet build AIGuiders.DotnetTools.sln -c Release --no-restore
24
25 - name: Sample TomlCheck
26 run: |
27 dotnet run --project AIGuiders.DotnetTools.TomlCheck/AIGuiders.DotnetTools.TomlCheck.csproj -- \
28 check samples/
29
View only · write via MCP/CIDE