Skip to content

Commit

Permalink
Update SeasonalBiteCI.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
vincenzochiovaro authored Nov 28, 2024
1 parent 29425e4 commit 6884364
Showing 1 changed file with 19 additions and 14 deletions.
33 changes: 19 additions & 14 deletions .github/workflows/SeasonalBiteCI.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,19 +12,24 @@ jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Checkout code
uses: actions/checkout@v3

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

- name: Restore dependencies
run: dotnet restore

- name: Build the project
run: dotnet build --configuration Release --no-restore

- name: Run tests
run: dotnet test
- name: Install MAUI Workloads
run: |
dotnet workload install maui-android
dotnet workload install maui-ios
- name: Restore dependencies
run: dotnet restore

- name: Build the project
run: dotnet build --configuration Release --no-restore

- name: Run tests
run: dotnet test

0 comments on commit 6884364

Please sign in to comment.