-
Notifications
You must be signed in to change notification settings - Fork 0
40 lines (30 loc) · 1.02 KB
/
enso.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
name: CI
on:
# Triggers the workflow on push or pull request events but only for the "master" branch
push:
branches: [ "master" ]
pull_request:
branches: [ "master" ]
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-latest
steps:
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
- uses: actions/checkout@v4
- name: Download ensoup
run: wget https://github.com/enso-org/enso/releases/download/2024.4.2/enso-launcher-2024.4.2-linux-amd64.tar.gz
- name: Untar ensoup
run: tar fxvz enso-launcher-2024.4.2-linux-amd64.tar.gz
- name: Install Enso
run: ./enso/bin/ensoup install engine 2024.4.2
- name: List Enso compoonents
run: ./enso/bin/ensoup list
- name: Test all projects
run: |
for i in Dec*; do
echo Running $i
./enso/bin/ensoup run $i
echo Exit code: $?
done