mirror of
https://github.com/LBPUnion/ProjectLighthouse.git
synced 2025-08-02 01:58:40 +00:00
Tell runner to only build for a given framework
This commit is contained in:
parent
9644b33dea
commit
eb6f1e3369
1 changed files with 3 additions and 3 deletions
6
.github/workflows/ci.yml
vendored
6
.github/workflows/ci.yml
vendored
|
@ -16,8 +16,8 @@ jobs:
|
||||||
# - { prettyName: macOS, fullName: macos-latest }
|
# - { prettyName: macOS, fullName: macos-latest }
|
||||||
- { prettyName: Linux, fullName: ubuntu-latest }
|
- { prettyName: Linux, fullName: ubuntu-latest }
|
||||||
dotnetVersion:
|
dotnetVersion:
|
||||||
- { prettyName: .NET 6.0 Preview, fullName: 6.0.x }
|
- { prettyName: .NET 6.0 Preview, fullName: 6.0.x, msbuildName: net6.0 }
|
||||||
- { prettyName: .NET 5.0, fullName: 5.0.x }
|
- { prettyName: .NET 5.0, fullName: 5.0.x, msbuildName: net5.0 }
|
||||||
timeout-minutes: 10
|
timeout-minutes: 10
|
||||||
steps:
|
steps:
|
||||||
- name: Checkout
|
- name: Checkout
|
||||||
|
@ -30,7 +30,7 @@ jobs:
|
||||||
include-prerelease: true
|
include-prerelease: true
|
||||||
|
|
||||||
- name: Compile
|
- name: Compile
|
||||||
run: dotnet build -c Debug
|
run: dotnet build -c Debug -f ${{matrix.dotnetVersion.msbuildName}}
|
||||||
|
|
||||||
- name: Test
|
- name: Test
|
||||||
run: --logger "trx;LogFileName=TestResults-${{matrix.os.prettyName}}-${{matrix.threadingMode}}.trx"
|
run: --logger "trx;LogFileName=TestResults-${{matrix.os.prettyName}}-${{matrix.threadingMode}}.trx"
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue