Skip to content

Commit

Permalink
Remove unnecessary comments
Browse files Browse the repository at this point in the history
  • Loading branch information
yasassri authored Sep 28, 2022
1 parent 137fe14 commit 509e166
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
strategy:
matrix:
os: [ubuntu-20.04, ubuntu-22.04, ubuntu-latest]
version: [4.1.0, 3.2.6, 3.1.5] # mixing the versions with "v" and without to test
version: [4.1.0, 3.2.6, 3.1.5]
steps:
- name: Checkout
uses: actions/checkout@v3
Expand All @@ -26,14 +26,14 @@ jobs:
with:
version: ${{ matrix.version }}
- name: Validate apictl version - ${{ matrix['version'] }}
run: apictl version | grep ${{ matrix['version']}} # Replacing the v in version.
run: apictl version | grep ${{ matrix['version']}}
Test_with_Tarball_Location_on_Different_OS:
name: Test APICTL with tarball location
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-20.04, ubuntu-22.04, ubuntu-latest]
version: ['https://github.com/wso2/product-apim-tooling/releases/download/v4.1.0/apictl-4.1.0-linux-x64.tar.gz'] # mixing the versions with "v" and without to test
version: ['https://github.com/wso2/product-apim-tooling/releases/download/v4.1.0/apictl-4.1.0-linux-x64.tar.gz']
steps:
- name: Checkout
uses: actions/checkout@v3
Expand All @@ -42,14 +42,14 @@ jobs:
with:
tarball_location: ${{ matrix.version }}
- name: Validate apictl version - ${{ matrix['version'] }}
run: apictl version | grep 4.1.0 # Replacing the v in version.
run: apictl version | grep 4.1.0
Test_variations_of_version:
name: Test APICTL different Version test
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest]
version: [v4.1.0] # mixing the versions with "v" and without to test
version: [v4.1.0]
steps:
- name: Checkout
uses: actions/checkout@v3
Expand All @@ -58,4 +58,4 @@ jobs:
with:
version: ${{ matrix.version }}
- name: Validate apictl version - ${{ matrix['version'] }}
run: apictl version | grep 4.1.0 # Replacing the v in version.
run: apictl version | grep 4.1.0

0 comments on commit 509e166

Please sign in to comment.