Skip to content

Commit

Permalink
fixes tests hopefully
Browse files Browse the repository at this point in the history
  • Loading branch information
MarkSuckerberg committed Aug 22, 2023
1 parent c1d5c9c commit 27f435d
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 7 deletions.
8 changes: 8 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,14 @@ jobs:
with:
lfs: true

- name: Setup .NET
uses: actions/setup-dotnet@v3
with:
dotnet-version: |
7.x
6.x
3.1.x
- name: Build
run: dotnet publish ${{ matrix.projectPath }} --configuration Release --runtime ${{ matrix.targetPlatform }} -p:PublishReadyToRun=false -p:TieredCompilation=false -p:PublishSingleFile=true -p:Version=$(git describe --tags --abbrev=0) --self-contained false --output ./Build/${{ matrix.targetPlatform }}

Expand Down
12 changes: 5 additions & 7 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,15 +14,13 @@ jobs:
steps:
- uses: actions/checkout@v2

- name: Setup .NET 6.0
- name: Setup .NET
uses: actions/setup-dotnet@v3
with:
dotnet-version: 6.0.x

- name: Setup .NET Core SDK
uses: actions/setup-dotnet@v3
with:
dotnet-version: 3.1.x
dotnet-version: |
7.0.x
6.0.x
3.1.x
- name: Restore dependencies
run: dotnet restore
Expand Down

0 comments on commit 27f435d

Please sign in to comment.