-
-
Notifications
You must be signed in to change notification settings - Fork 40
27 lines (24 loc) · 670 Bytes
/
release.yml
File metadata and controls
27 lines (24 loc) · 670 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
name: Release
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
on:
release:
types: [created, edited]
jobs:
build:
strategy:
matrix:
smalltalk: [ Pharo64-9.0, Pharo64-10, Pharo64-11 ]
os: [ macos-latest, windows-latest, ubuntu-latest]
runs-on: ${{ matrix.os }}
name: ${{ matrix.smalltalk }} on ${{ matrix.os }}
env:
PROJECT_NAME: PolyMath-${{ matrix.smalltalk }}
steps:
- uses: actions/checkout@v3
- uses: hpi-swa/setup-smalltalkCI@v1
with:
smalltalk-image: ${{ matrix.smalltalk }}
- run: smalltalkci -s ${{ matrix.smalltalk }}
shell: bash
timeout-minutes: 15