Skip to content

remove midasIcon

remove midasIcon #20

Workflow file for this run

# This is a basic workflow to help you get started with Actions
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:
- main
- v*
pull_request:
branches:
- main
- v*
jobs:
build:
runs-on: ubuntu-latest
env:
PROJECT_NAME: Famix-Html
strategy:
matrix:
smalltalk: [ Moose64-10, Moose64-11 ]
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
with:
github-token: ${{ secrets.GITHUB_TOKEN }}