Merge pull request #770 from moosetechnology/speedup-source-target #304
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: Pull request | |
on: | |
pull_request: | |
types: [assigned, opened, synchronize, reopened] | |
push: | |
branches: | |
- development | |
- master | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
strategy: | |
fail-fast: false | |
matrix: | |
smalltalk-config: [ .github/workflows/famix-config.ston, .github/workflows/famixCpp-config.ston, .github/workflows/criticBrowser-config.ston, .github/workflows/famixFortran-config.ston ] | |
smalltalk-image: [ Pharo64-11 ] | |
include: | |
- smalltalk-config: .github/workflows/famix-config.ston | |
name: Famix tests | |
- smalltalk-config: .github/workflows/famixCpp-config.ston | |
name: FamixCpp tests | |
- smalltalk-config: .github/workflows/criticBrowser-config.ston | |
name: CriticBrowser tests | |
- smalltalk-config: .github/workflows/famixFortran-config.ston | |
name: Fortran tests | |
name: ${{ matrix.name }} - ${{ matrix.smalltalk-image }} | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: hpi-swa/setup-smalltalkCI@v1 | |
id: smalltalkci | |
with: | |
smalltalk-image: ${{ matrix.smalltalk-image }} | |
- run: smalltalkci -s ${{ steps.smalltalkci.outputs.smalltalk-image }} ${{ matrix.smalltalk-config }} | |
shell: bash | |
timeout-minutes: 15 |