Skip to content

Commit

Permalink
Update workflow versions
Browse files Browse the repository at this point in the history
  • Loading branch information
behindcurtain3 committed Mar 21, 2024
1 parent 087fbb2 commit 8f5d211
Showing 1 changed file with 10 additions and 10 deletions.
20 changes: 10 additions & 10 deletions .github/workflows/Build_and_run_tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,9 @@ jobs:
runs-on: windows-2022
steps:
- name: Checkout code
uses: actions/checkout@v3
uses: actions/checkout@v4
- name: Setup dotnet
uses: actions/setup-dotnet@v1
uses: actions/setup-dotnet@v4
with:
dotnet-version: 7.0.x

Expand All @@ -23,7 +23,7 @@ jobs:
cd Pulsar4X
dotnet restore "Pulsar4X.sln"
dotnet build --no-restore
- name: Run tests
shell: pwsh
run: |
Expand All @@ -34,9 +34,9 @@ jobs:
runs-on: ubuntu-22.04
steps:
- name: Checkout code
uses: actions/checkout@v3
uses: actions/checkout@v4
- name: Setup dotnet
uses: actions/setup-dotnet@v1
uses: actions/setup-dotnet@v4
with:
dotnet-version: 7.0.x

Expand All @@ -46,20 +46,20 @@ jobs:
cd Pulsar4X
dotnet restore "Pulsar4X.sln"
dotnet build --no-restore
- name: Run tests
shell: bash
run: |
cd Pulsar4X
dotnet test --no-restore
macOS-12:
runs-on: macos-12
steps:
- name: Checkout code
uses: actions/checkout@v3
uses: actions/checkout@v4
- name: Setup dotnet
uses: actions/setup-dotnet@v1
uses: actions/setup-dotnet@v4
with:
dotnet-version: 7.0.x

Expand All @@ -69,7 +69,7 @@ jobs:
cd Pulsar4X
dotnet restore "Pulsar4X.sln"
dotnet build --no-restore
- name: Run tests
shell: bash
run: |
Expand Down

0 comments on commit 8f5d211

Please sign in to comment.