Skip to content

Commit

Permalink
reverted to a state where the file ran
Browse files Browse the repository at this point in the history
  • Loading branch information
Feargh committed Jul 16, 2024
1 parent bce2767 commit ff525a3
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions .github/workflows/run-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,27 +3,27 @@ name: Run Tests on PR
on:
pull_request:
branches:
- main
- main # Adjust the branch name as per your main branch

jobs:
test:
runs-on: ubuntu-latest
runs-on: ubuntu-latest # You can change the OS as per your preference

steps:
- uses: actions/checkout@v2

- name: Setup .NET
uses: actions/setup-dotnet@v1
with:
dotnet-version: "8.0.6"
dotnet-version: "8.0.6" # Replace with your desired .NET version

- name: Restore dependencies
run: dotnet restore

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

- name: Run Tests
run: |
cd afh-be.Tests
dotnet test --no-restore --verbosity normal
run:
cd afh-be.Tests
dotnet test

0 comments on commit ff525a3

Please sign in to comment.