-
Notifications
You must be signed in to change notification settings - Fork 3
42 lines (39 loc) · 1.09 KB
/
test.yml
File metadata and controls
42 lines (39 loc) · 1.09 KB
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
name: CI Test
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
on:
push:
branches: [ v* ]
pull_request:
branches: [ v* ]
jobs:
build:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
smalltalk: [ Moose64-12 ]
name: ${{ matrix.smalltalk }}
steps:
- uses: actions/checkout@v3
with:
fetch-depth: '0'
- uses: addnab/docker-run-action@v3
with:
registry: ghcr.io
image: ghcr.io/evref-bl/verveinej:v3.2.1
options: -v ${{ github.workspace }}:/src
run: |
cd tests
/VerveineJ-3.2.1/verveinej.sh -format json -o output.json -alllocals -anchor assoc .
cd ..
- 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 }}