feat: add marketplace chart and vault section #916
This file contains hidden or 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: Test Packages | |
| on: | |
| push: | |
| pull_request: | |
| env: | |
| DOJO_VERSION: v1.6.1 | |
| SCARB_VERSION: 2.10.1 | |
| WORKING_DIRECTORY: ./packages | |
| jobs: | |
| check: | |
| runs-on: ubuntu-latest | |
| name: Check format | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: software-mansion/setup-scarb@v1 | |
| with: | |
| scarb-version: ${{ env.SCARB_VERSION }} | |
| - name: Format | |
| working-directory: ${{ env.WORKING_DIRECTORY }} | |
| run: scarb fmt --check | |
| shell: bash | |
| build: | |
| needs: check | |
| runs-on: ubuntu-latest | |
| name: Build package | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: ./.github/actions/setup | |
| - name: Build | |
| working-directory: ${{ env.WORKING_DIRECTORY }} | |
| run: sozo build | |
| shell: bash | |
| test: | |
| needs: [check, build] | |
| runs-on: ubuntu-latest | |
| name: Test package | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: software-mansion/setup-scarb@v1 | |
| with: | |
| scarb-version: ${{ env.SCARB_VERSION }} | |
| - uses: ./.github/actions/setup | |
| - name: Test | |
| working-directory: ${{ env.WORKING_DIRECTORY }} | |
| run: sozo test | |
| shell: bash |