Update devcontainer.json - Fix Score schema broken link #50
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: ci | |
permissions: | |
contents: read | |
id-token: write | |
on: | |
push: | |
jobs: | |
score-validate: | |
strategy: | |
matrix: | |
apps: ["order", "product", "store-front", "makeline", "store-admin"] | |
runs-on: ubuntu-22.04 | |
env: | |
HUMCTL_VERSION: '*' | |
steps: | |
- name: checkout code | |
uses: actions/checkout@v4 | |
- name: install humctl | |
uses: humanitec/setup-cli-action@v1 | |
with: | |
version: ${{ env.HUMCTL_VERSION }} | |
- name: humctl score validate | |
run: | | |
humctl score validate apps/${{ matrix.apps }}/score.yaml \ | |
--token ${{ secrets.HUMANITEC_TOKEN }} \ | |
--org ${{ secrets.HUMANITEC_ORG }} \ | |
--strict | |
score-compose: | |
runs-on: ubuntu-22.04 | |
env: | |
SCORE_COMPOSE_VERSION: 'latest' | |
steps: | |
- name: checkout code | |
uses: actions/checkout@v4 | |
- name: install score-compose | |
uses: score-spec/setup-score@v3 | |
with: | |
file: score-compose | |
token: ${{ secrets.GITHUB_TOKEN }} | |
version: ${{ env.SCORE_COMPOSE_VERSION }} | |
- name: make compose-test | |
run: | | |
make compose-test |