-
Notifications
You must be signed in to change notification settings - Fork 14
33 lines (29 loc) · 876 Bytes
/
build.yml
File metadata and controls
33 lines (29 loc) · 876 Bytes
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
name: CI
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
# Controls when the action will run. Triggers the workflow on push or pull request
# events but only for the development branch
on:
pull_request:
types: [assigned, opened, synchronize, reopened]
push:
branches:
- master
- pharo9-openssl1.1
- pharo10-openssl1.1
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
pharoversion: [ Pharo64-alpha, Pharo64-13, Pharo64-12, Pharo64-11, Pharo64-10, Pharo64-9.0 ]
name: ${{ matrix.pharoversion }}
steps:
- uses: actions/checkout@v2
- uses: hpi-swa/setup-smalltalkCI@v1
id: smalltalkci
with:
smalltalk-version: ${{ matrix.pharoversion }}
- run: smalltalkci -s ${{ steps.smalltalkci.outputs.smalltalk-version}}
shell: bash
timeout-minutes: 15