Skip to content

Commit 0c89040

Browse files
authored
Add VPP 23.06 to CI (#136)
* Update test.yaml Changes: - add VPP 23.06 and remove VPP 22.02 from integration tests - update Go to 1.20 Signed-off-by: Ondrej Fabry <[email protected]> * Fix Go version variable type Use string instead of number (it converted `1.20` to `1.2`) to specify Go version Signed-off-by: Ondrej Fabry <[email protected]> * Revert branch push trigger to master only Signed-off-by: Ondrej Fabry <[email protected]> --------- Signed-off-by: Ondrej Fabry <[email protected]>
1 parent 21b5292 commit 0c89040

File tree

1 file changed

+5
-4
lines changed

1 file changed

+5
-4
lines changed

.github/workflows/test.yaml

+5-4
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,18 @@
11
---
22
name: Test
33
on:
4+
# Runs on branch push to master & PRs
45
push:
56
branches:
67
- master
78
pull_request:
89
paths-ignore:
910
- 'docs/**'
1011
- '**.md'
11-
# Runs at 05:05. Daily.
12+
# Runs daily at 05:05
1213
schedule:
1314
- cron: '5 5 * * *'
14-
# Allows running this workflow manually
15+
# Allows running manually
1516
workflow_dispatch:
1617

1718
jobs:
@@ -23,15 +24,15 @@ jobs:
2324
strategy:
2425
fail-fast: false
2526
matrix:
26-
version: [ '2302', '2210', '2206', '2202' ]
27+
version: [ '2306', '2302', '2210', '2206' ]
2728

2829
steps:
2930
- name: "Checkout"
3031
uses: actions/checkout@v3
3132
- name: Setup Go
3233
uses: actions/setup-go@v3
3334
with:
34-
go-version: 1.19
35+
go-version: '1.20'
3536
- name: "Run Tests"
3637
run: |
3738
make test-integration

0 commit comments

Comments
 (0)