Skip to content

Commit

Permalink
Migrate to GithubAction + Enable Pharo 9
Browse files Browse the repository at this point in the history
  • Loading branch information
jecisc committed Jan 29, 2022
1 parent 4cf7d48 commit d3aaac8
Show file tree
Hide file tree
Showing 3 changed files with 32 additions and 15 deletions.
30 changes: 30 additions & 0 deletions .github/workflows/continuous.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
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:
push:
branches:
- '**'
pull_request:
types: [assigned, opened, synchronize, reopened]

jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
smalltalk: [ Pharo64-6.1, Pharo64-7.0, Pharo64-8.0, Pharo64-9.0 ]
name: ${{ matrix.smalltalk }}
steps:
- uses: actions/checkout@v2
- uses: hpi-swa/setup-smalltalkCI@v1
with:
smalltalk-version: ${{ matrix.smalltalk }}
- run: smalltalkci -s ${{ matrix.smalltalk }}
shell: bash
timeout-minutes: 15

13 changes: 0 additions & 13 deletions .travis.yml

This file was deleted.

4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -128,9 +128,9 @@ Thus, it should be safe to depend on a fixed major version and moving minor vers

## Smalltalk versions compatibility

| Version | Compatible Pharo versions |
| Version | Compatible Pharo versions |
|------------- |--------------------------- |
| 1.x.x | Pharo 61, 70, 80 |
| 1.x.x | Pharo 61, 70, 80, 90 |

## Contact

Expand Down

0 comments on commit d3aaac8

Please sign in to comment.