diff --git a/.github/workflows/check_pr.yml b/.github/workflows/check_pr.yml index bba92af8..199d25df 100644 --- a/.github/workflows/check_pr.yml +++ b/.github/workflows/check_pr.yml @@ -7,11 +7,17 @@ jobs: runs-on: ubuntu-latest steps: - uses: actions/checkout@v4 - + - name: Setup .NET uses: actions/setup-dotnet@v4 with: dotnet-version: 8.0.x - + + - name: Restore dependencies + run: dotnet restore + - name: Build - run: dotnet build \ No newline at end of file + run: dotnet build --no-restore + + - name: Test + run: dotnet test --no-restore --verbosity normal \ No newline at end of file diff --git a/CHANGELIST.md b/CHANGELIST.md index d802956a..64abc9a7 100644 --- a/CHANGELIST.md +++ b/CHANGELIST.md @@ -14,6 +14,7 @@ - Update to SabreTools.RedumpLib 1.3.5 - Update packages to latest - Enable LibIRD for all .NET frameworks (Deterous) +- Try updating PR check action ### 3.1.2 (2024-02-27)