Skip to content

Commit

Permalink
chore: add net9 to the build dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
iancooper committed Dec 2, 2024
1 parent 1aaed37 commit bc0fb88
Showing 1 changed file with 28 additions and 27 deletions.
55 changes: 28 additions & 27 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,12 +33,12 @@ jobs:
timeout-minutes: 30
runs-on: ubuntu-latest
steps:
- name: Setup dotnet 8
- name: Setup dotnet
uses: actions/setup-dotnet@v4
with:
dotnet-version: |
6.0.x
8.0.x
9.0.x
- run: dotnet --info
- uses: actions/checkout@v4
with:
Expand Down Expand Up @@ -88,12 +88,12 @@ jobs:

steps:
- uses: actions/checkout@v4
- name: Setup dotnet 8
- name: Setup dotnet
uses: actions/setup-dotnet@v4
with:
dotnet-version: |
6.0.x
8.0.x
9.0.x
- name: Install dependencies
run: dotnet restore
- name: In Memory Transport Tests
Expand All @@ -117,12 +117,12 @@ jobs:
steps:
- uses: actions/checkout@v4
- name: Setup dotnet 8
- name: Setup dotnet
uses: actions/setup-dotnet@v4
with:
dotnet-version: |
6.0.x
8.0.x
9.0.x
- name: Install dependencies
run: dotnet restore
- name: Redis Transport Tests
Expand All @@ -142,11 +142,12 @@ jobs:
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Setup dotnet 6
uses: actions/setup-dotnet@v3
- name: Setup dotnet
uses: actions/setup-dotnet@v4
with:
dotnet-version: |
6.0.x
8.0.x
9.0.x
- name: Install dependencies
run: dotnet restore
- name: MQTT Transport Tests
Expand All @@ -171,12 +172,12 @@ jobs:
steps:
- uses: actions/checkout@v4
- name: Setup dotnet 8
- name: Setup dotnet
uses: actions/setup-dotnet@v4
with:
dotnet-version: |
6.0.x
8.0.x
9.0.x
- name: Install dependencies
run: dotnet restore
- name: RMQ Transport Tests
Expand Down Expand Up @@ -234,12 +235,12 @@ jobs:
run: docker ps -a
- name: Checkout code
uses: actions/checkout@v4
- name: Setup dotnet 8
- name: Setup dotnet
uses: actions/setup-dotnet@v4
with:
dotnet-version: |
6.0.x
8.0.x
9.0.x
- name: Install dependencies
run: dotnet restore
- name: Kafka Transport Tests
Expand All @@ -264,12 +265,12 @@ jobs:
--health-retries 5
steps:
- uses: actions/checkout@v4
- name: Setup dotnet 8
- name: Setup dotnet
uses: actions/setup-dotnet@v4
with:
dotnet-version: |
6.0.x
8.0.x
9.0.x
- name: Install dependencies
run: dotnet restore
- name: Postgres Tests
Expand All @@ -290,12 +291,12 @@ jobs:
SA_PASSWORD: Password123!
steps:
- uses: actions/checkout@v4
- name: Setup dotnet 8
- name: Setup dotnet
uses: actions/setup-dotnet@v4
with:
dotnet-version: |
6.0.x
8.0.x
9.0.x
- name: Install dependencies
run: dotnet restore
- name: MSSQL Tests
Expand All @@ -318,12 +319,12 @@ jobs:

steps:
- uses: actions/checkout@v4
- name: Setup dotnet 8
- name: Setup dotnet
uses: actions/setup-dotnet@v4
with:
dotnet-version: |
6.0.x
8.0.x
9.0.x
- name: Install dependencies
run: dotnet restore
- name: Verify MariaDB connection
Expand All @@ -349,12 +350,12 @@ jobs:

steps:
- uses: actions/checkout@v4
- name: Setup dotnet 8
- name: Setup dotnet
uses: actions/setup-dotnet@v4
with:
dotnet-version: |
6.0.x
8.0.x
9.0.x
- name: Install dependencies
run: dotnet restore
- name: DynamoDB Tests
Expand All @@ -372,12 +373,12 @@ jobs:

steps:
- uses: actions/checkout@v4
- name: Setup dotnet 8
- name: Setup dotnet
uses: actions/setup-dotnet@v4
with:
dotnet-version: |
6.0.x
8.0.x
9.0.x
- name: Install dependencies
run: dotnet restore
- name: Configure AWS Credentials
Expand All @@ -399,12 +400,12 @@ jobs:

steps:
- uses: actions/checkout@v4
- name: Setup dotnet 8
- name: Setup dotnet
uses: actions/setup-dotnet@v4
with:
dotnet-version: |
6.0.x
8.0.x
9.0.x
- name: Install dependencies
run: dotnet restore
- name: Sqlite Tests
Expand All @@ -416,12 +417,12 @@ jobs:
needs: [build]
steps:
- uses: actions/checkout@v4
- name: Setup dotnet 8
- name: Setup dotnet
uses: actions/setup-dotnet@v4
with:
dotnet-version: |
6.0.x
8.0.x
9.0.x
- name: Install dependencies
run: dotnet restore
- name: Azure Tests
Expand Down

0 comments on commit bc0fb88

Please sign in to comment.