-
Notifications
You must be signed in to change notification settings - Fork 24
38 lines (35 loc) · 1.29 KB
/
pull-request.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
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