Skip to content

Commit c49255e

Browse files
committed
Migrate to github actions + enable Pharo 9 in CI
1 parent 16eaa82 commit c49255e

File tree

3 files changed

+32
-12
lines changed

3 files changed

+32
-12
lines changed

.github/workflows/continuous.yml

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
name: CI
2+
3+
env:
4+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
5+
6+
# Controls when the action will run. Triggers the workflow on push or pull request
7+
# events but only for the development branch
8+
on:
9+
push:
10+
branches:
11+
- '**'
12+
pull_request:
13+
types: [assigned, opened, synchronize, reopened]
14+
15+
jobs:
16+
build:
17+
runs-on: ubuntu-latest
18+
strategy:
19+
matrix:
20+
smalltalk: [ Pharo64-6.1, Pharo64-7.0, Pharo64-8.0, Pharo64-9.0 ]
21+
name: ${{ matrix.smalltalk }}
22+
steps:
23+
- uses: actions/checkout@v2
24+
- uses: hpi-swa/setup-smalltalkCI@v1
25+
with:
26+
smalltalk-version: ${{ matrix.smalltalk }}
27+
- run: smalltalkci -s ${{ matrix.smalltalk }}
28+
shell: bash
29+
timeout-minutes: 15
30+

.travis.yml

Lines changed: 0 additions & 10 deletions
This file was deleted.

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -83,9 +83,9 @@ Thus, it should be safe to depend on a fixed major version and moving minor vers
8383

8484
## Smalltalk versions compatibility
8585

86-
| Version | Compatible Pharo versions |
86+
| Version | Compatible Pharo versions |
8787
|------------- |--------------------------- |
88-
| 1.x.x | Pharo 61, 70, 80 |
88+
| 1.x.x | Pharo 61, 70, 80, 90 |
8989

9090
## Contact
9191

0 commit comments

Comments
 (0)