-
Notifications
You must be signed in to change notification settings - Fork 33
48 lines (39 loc) · 911 Bytes
/
ci.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
40
41
42
43
44
45
46
47
48
name: CI
on:
push:
branches:
- master
pull_request:
jobs:
run-hello-world:
strategy:
matrix:
os: [windows-latest]
name: Build Effekt compiler and run one test
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
with:
submodules: 'true'
- uses: ./.github/actions/setup-effekt
- uses: ./.github/actions/run-effekt-tests
with:
full-test: 'false'
build-jar:
strategy:
matrix:
os: [ubuntu-latest]
name: Build Effekt compiler and run tests
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
with:
submodules: 'true'
- uses: ./.github/actions/setup-effekt
with:
install-dependencies: 'true'
install-valgrind: 'true'
- uses: ./.github/actions/run-effekt-tests
with:
full-test: 'true'
use-retry: 'false'