Skip to content

Commit 19b8d85

Browse files
authored
Merge pull request #17 from noha/replace-travis-with-github-actions
added github actions, removed travis
2 parents 7e5e3a9 + 117e513 commit 19b8d85

2 files changed

Lines changed: 28 additions & 10 deletions

File tree

.github/workflows/build.yml

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
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+
pull_request:
10+
types: [assigned, opened, synchronize, reopened]
11+
12+
push:
13+
branches:
14+
- development
15+
16+
17+
jobs:
18+
build:
19+
runs-on: ubuntu-latest
20+
steps:
21+
- uses: actions/checkout@v2
22+
- uses: hpi-swa/setup-smalltalkCI@v1
23+
id: smalltalkci
24+
with:
25+
smalltalk-version: Pharo64-9.0
26+
- run: smalltalkci -s ${{ steps.smalltalkci.outputs.smalltalk-version }}
27+
shell: bash
28+
timeout-minutes: 15

.travis.yml

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

0 commit comments

Comments
 (0)