Skip to content

Update README.md - score-spec/setup-score #33

Update README.md - score-spec/setup-score

Update README.md - score-spec/setup-score #33

Workflow file for this run

name: Tests
on:
push:
branches:
- main
pull_request:
defaults:
run:
shell: bash
jobs:
test:
name: Test
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [macos-latest, windows-latest, ubuntu-latest]
version: [0.6.0]
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Setup score-compose
uses: ./
with:
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 SCORE_CS_VERSION=$( score-compose --version )
export SCORE_HT_VERSION=$( score-humanitec --version )
export SCORE_HM_VERSION=$( score-helm --version )