Feat/ls/life #54
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: CI | |
on: | |
- push | |
- pull_request | |
# for triggering the workflow manually from the GitHub Actions page | |
- workflow_dispatch | |
jobs: | |
build: | |
runs-on: ${{ matrix.os }} | |
strategy: | |
matrix: | |
# Select platform(s) | |
os: | |
- ubuntu-latest | |
# If your application contains any OS-dependent logic (such as | |
# accesses to the filesystem or invocations of native libraries), | |
# you can enable further OS platforms here. Other than that, you may | |
# just leave them disabled to reduce energy usage and build time :) | |
# (Usually, windows builds are slower than ubuntu/macOS.) | |
#- macos-latest | |
#- windows-latest | |
# Select compatible Smalltalk image(s) | |
smalltalk: [ Squeak64-trunk ] | |
name: ${{ matrix.smalltalk }} on ${{ matrix.os }} | |
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 | |
env: | |
# for uploading coverage reports | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |