Fixed the tests with property type declarations #200
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: Unified Release Manager Checks | |
on: | |
pull_request: | |
paths-ignore: | |
- 'README.md' | |
push: | |
paths-ignore: | |
- 'README.md' | |
branches: | |
- main | |
- master | |
- '[0-9]+.[0-9]+' | |
- '[0-9]+.x' | |
jobs: | |
assemble: | |
name: Assemble | |
runs-on: ubuntu-latest | |
strategy: | |
fail-fast: false | |
matrix: | |
stack_version: ['8.9-SNAPSHOT'] | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v2 | |
- run: "./.ci/make.sh assemble ${{ matrix.stack_version }}" | |
name: Assemble ${{ matrix.stack_version }} |