fix(module_manager): PPT-1636 refactor to use empty settings when mer… #670
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 | |
on: push | |
jobs: | |
crystal-style: | |
uses: PlaceOS/.github/.github/workflows/crystal-style.yml@main | |
dockerfile-style: | |
uses: PlaceOS/.github/.github/workflows/dockerfile-style.yml@main | |
test: | |
name: "${{ !matrix.crystal.stable && '🚧 ' || ''}}crystal: ${{ matrix.crystal.tag }}, subset: ${{ matrix.subset }}, MT: ${{ matrix.MT }}" | |
runs-on: ubuntu-latest | |
strategy: | |
fail-fast: false | |
matrix: | |
crystal: | |
- tag: latest | |
stable: true | |
- tag: unstable | |
stable: false | |
MT: [false] | |
continue-on-error: ${{ !matrix.crystal.stable }} | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Test ${{ matrix.subset }} | |
run: ./test ${{ matrix.MT && '-Dpreview_mt' || '' }} --tag "~processes" | |
env: | |
CRYSTAL_VERSION: ${{ matrix.crystal.tag }} |