Skip to content

Commit

Permalink
Enable manual trigger of Github workflow with "workflow_dispatch" eve…
Browse files Browse the repository at this point in the history
…nt. (#59)

* Enable manual trigger of Github workflow with "workflow_dispatch" event.

* - Update dotnet version from 7 to 8 in GitHub unit test workflow.
- Update GitHub actions to latest major version due to deprecation of older Node.js version.
  • Loading branch information
CodingFlow authored Jun 6, 2024
1 parent 60b5739 commit 0d6d929
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/pull-request.yml
Original file line number Diff line number Diff line change
@@ -1,18 +1,18 @@
name: pull-request-unit-tests
run-name: Unit tests
on: [push]
on: [push, workflow_dispatch]
jobs:
build:
name: Unit tests
runs-on: ubuntu-latest
strategy:
matrix:
dotnet-version: ["7.0.x"]
dotnet-version: ["8.0.x"]

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Setup .NET Core SDK ${{ matrix.dotnet-version }}
uses: actions/setup-dotnet@v3
uses: actions/setup-dotnet@v4
with:
dotnet-version: ${{ matrix.dotnet-version }}
- name: Install dependencies
Expand Down

0 comments on commit 0d6d929

Please sign in to comment.