Merge fdc094e72f6643293c4ce3301ccd0adeb5a19807 #75
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: CI Test | |
| env: | |
| GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
| on: | |
| push: | |
| branches: [ v* ] | |
| pull_request: | |
| branches: [ v* ] | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| smalltalk: [ Moose64-12 ] | |
| name: ${{ matrix.smalltalk }} | |
| steps: | |
| - uses: actions/checkout@v3 | |
| with: | |
| fetch-depth: '0' | |
| - uses: addnab/docker-run-action@v3 | |
| with: | |
| registry: ghcr.io | |
| image: ghcr.io/evref-bl/verveinej:v3.2.1 | |
| options: -v ${{ github.workspace }}:/src | |
| run: | | |
| cd tests | |
| /VerveineJ-3.2.1/verveinej.sh -format json -o output.json -alllocals -anchor assoc . | |
| cd .. | |
| - uses: hpi-swa/setup-smalltalkCI@v1 | |
| with: | |
| smalltalk-image: ${{ matrix.smalltalk }} | |
| - run: smalltalkci -s ${{ matrix.smalltalk }} | |
| shell: bash | |
| timeout-minutes: 15 | |
| - name: Coveralls | |
| uses: coverallsapp/github-action@master | |
| with: | |
| github-token: ${{ secrets.GITHUB_TOKEN }} |