Skip to content

Commit

Permalink
Fix to restore
Browse files Browse the repository at this point in the history
  • Loading branch information
Foxlider committed Oct 13, 2024
1 parent 31d13b0 commit d4fd9c0
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 7 deletions.
3 changes: 2 additions & 1 deletion .github/workflows/codeql-analysis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,8 @@ jobs:
with:
dotnet-version: ${{vars.DOTNET_VERSION}}

- run: dotnet restore
- name: Restore Solution
run: dotnet restore ./FASTER.sln

- name: Build Solution
run: dotnet build ./FASTER.sln --configuration Debug
Expand Down
12 changes: 6 additions & 6 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -49,14 +49,14 @@ jobs:
uses: actions/setup-dotnet@v4
with:
dotnet-version: ${{vars.DOTNET_VERSION}}

# Execute all unit tests in the solution
- name: Execute unit tests
run: dotnet test

# Restore the application to populate the obj folder with RuntimeIdentifiers

# Restore the application to populate the obj folder with RuntimeIdentifiers
- name: Restore the application
run: dotnet restore

# Execute all unit tests in the solution
- name: Execute unit tests
run: dotnet test

# Build
- name: Build the application
Expand Down

0 comments on commit d4fd9c0

Please sign in to comment.