Skip to content

Fix importation issue #262

Fix importation issue

Fix importation issue #262

Workflow file for this run

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:
- master
pull_request:
branches:
- master
jobs:
build:
runs-on: ubuntu-latest
env:
PROJECT_NAME: ${{ matrix.smalltalk }}-Esope
strategy:
matrix:
smalltalk: [ Pharo64-11, Pharo64-12 ]
name: ${{ matrix.smalltalk }}
steps:
- uses: actions/checkout@v4
- name: Cache Cabal packages
uses: actions/cache@v3
with:
path: |
~/.cabal/store
~/.cabal/bin
key: ${{ runner.os }}-cabal-${{ hashFiles('**/cabal.project') }}
restore-keys: |
${{ runner.os }}-cabal-
- name: Install Haskell dependencies
run: |
sudo apt update
sudo apt install -y cabal-install
cabal update
cabal install fortran-src-extras
- name: Add Cabal to PATH
run: echo "$HOME/.cabal/bin" >> $GITHUB_PATH
- uses: hpi-swa/setup-smalltalkCI@v1
with:
smalltalk-image: ${{ matrix.smalltalk }}
- uses: hpi-swa/setup-smalltalkCI@v1
with:
smalltalk-image: ${{ matrix.smalltalk }}
- run: smalltalkci -s ${{ matrix.smalltalk }}
shell: bash
timeout-minutes: 15