Skip to content

Commit

Permalink
fix: updated github action tests
Browse files Browse the repository at this point in the history
Signed-off-by: Eugene Y <yarshevich@gmail.com>
  • Loading branch information
ghen committed Aug 7, 2023
1 parent 7fde9c9 commit 70cce1f
Showing 1 changed file with 20 additions and 7 deletions.
27 changes: 20 additions & 7 deletions .github/workflows/test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ name: Tests
on:
push:
branches:
- master
- main
pull_request:

defaults:
Expand All @@ -18,19 +18,32 @@ jobs:
strategy:
matrix:
os: [macos-latest, windows-latest, ubuntu-latest]
version: [latest, 0.3.0]
version: [latest, 0.6.0]

steps:
- name: Checkout
uses: actions/checkout@v3

- name: Setup PAWS CLI
- name: Setup score-compose
uses: ./
with:
paws-version: ${{ matrix.version }}
token: ${{ secrets.PAWS_REPO_TOKEN }}
file: score-compose
version: ${{ matrix.version }}

- name: Setup score-humanitec
uses: ./
with:
file: score-humanitec
version: ${{ matrix.version }}

- name: Setup score-helm
uses: ./
with:
file: score-helm
version: ${{ matrix.version }}

- name: Verify installation
run: |
export PAWS_CS_VERSION=$( paws-compose --version )
export PAWS_HT_VERSION=$( paws-humanitec --version )
export SCORE_CS_VERSION=$( score-compose --version )
export SCORE_HT_VERSION=$( score-humanitec --version )
export SCORE_HM_VERSION=$( score-helm --version )

0 comments on commit 70cce1f

Please sign in to comment.