Skip to content

feat(BitbucketRepositories): all in project #32

feat(BitbucketRepositories): all in project

feat(BitbucketRepositories): all in project #32

Workflow file for this run

name: Continuous
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
on:
push:
branches:
- main
- develop
pull_request:
branches:
- main
- develop
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
smalltalk: [ Pharo64-11, Pharo64-12 ]
name: ${{ matrix.smalltalk }}
steps:
- uses: actions/checkout@v2
- uses: hpi-swa/setup-smalltalkCI@v1
with:
smalltalk-image: ${{ matrix.smalltalk }}
- run: smalltalkci -s ${{ matrix.smalltalk }}
shell: bash
timeout-minutes: 15
- name: Coveralls
uses: coverallsapp/github-action@master
if: ${{ matrix.smalltalk == 'Pharo64-12' }}
with:
github-token: ${{ secrets.GITHUB_TOKEN }}