Skip to content

Commit

Permalink
Update workflows
Browse files Browse the repository at this point in the history
  • Loading branch information
mtmk committed Sep 25, 2024
1 parent 92f6a05 commit a3a30c2
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 10 deletions.
4 changes: 2 additions & 2 deletions .github/docs.yml → .github/workflows/docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,10 +20,10 @@ jobs:
url: ${{ steps.deployment.outputs.page_url }}
steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4

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

Expand Down
4 changes: 2 additions & 2 deletions .github/format.yml → .github/workflows/format.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,10 +9,10 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4

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

Expand Down
4 changes: 2 additions & 2 deletions .github/perf.yml → .github/workflows/perf.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,10 +41,10 @@ jobs:
nats-server -v
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4

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

Expand Down
2 changes: 1 addition & 1 deletion .github/release.yml → .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4

- id: tag
name: Determine tag
Expand Down
5 changes: 2 additions & 3 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -46,12 +46,11 @@ jobs:
run: dotnet build -c Release

- name: Test Core
# run: dotnet test -c Release --no-build --logger:"console;verbosity=normal" tests/NATS.Client.Core.Tests/NATS.Client.Core.Tests.csproj
run: |
killall nats-server 2> /dev/null | echo -n
nats-server -v
cd tests/NATS.Client.Core.Tests
dotnet test -c Release --no-build
dotnet test -c Release --no-build --logger:"console;verbosity=normal"
- name: Test Core2
run: |
Expand Down Expand Up @@ -99,7 +98,7 @@ jobs:
run: |
killall nats-server 2> /dev/null | echo -n
nats-server -v
cd tests/NATS.Client.OpenTelemetry.Tests
cd tests/NATS.Net.OpenTelemetry.Tests
dotnet test -c Release --no-build
- name: Check Native AOT
Expand Down

0 comments on commit a3a30c2

Please sign in to comment.