Skip to content

Commit

Permalink
Merge pull request #2 from pharo-contributions/replace-travis-with-gi…
Browse files Browse the repository at this point in the history
…thub-actions

Replace travis with GitHub actions
  • Loading branch information
Ducasse authored Apr 25, 2022
2 parents 4856538 + bf33423 commit 89f8fd5
Show file tree
Hide file tree
Showing 2 changed files with 31 additions and 10 deletions.
31 changes: 31 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
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

jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
smalltalk: [ Pharo64-10, Pharo64-9.0, Pharo64-8.0 ]
name: ${{ matrix.smalltalk }}
steps:
- uses: actions/checkout@v2
- uses: hpi-swa/setup-smalltalkCI@v1
id: smalltalkci
with:
smalltalk-image: ${{ matrix.smalltalk }}
- run: smalltalkci -s ${{ matrix.smalltalk }}
shell: bash
timeout-minutes: 15
10 changes: 0 additions & 10 deletions .travis.yml

This file was deleted.

0 comments on commit 89f8fd5

Please sign in to comment.