Skip to content

Commit cbb6f4b

Browse files
Add Pharo version matrix CI
Co-authored-by: Codex <codex@openai.com>
1 parent c511b57 commit cbb6f4b

2 files changed

Lines changed: 40 additions & 0 deletions

File tree

.github/workflows/ci.yml

Lines changed: 38 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,38 @@
1+
name: CI
2+
3+
on:
4+
push:
5+
branches:
6+
- main
7+
pull_request:
8+
9+
permissions:
10+
contents: read
11+
12+
jobs:
13+
test:
14+
name: ${{ matrix.smalltalk }}
15+
runs-on: ubuntu-latest
16+
timeout-minutes: 25
17+
18+
strategy:
19+
fail-fast: false
20+
matrix:
21+
smalltalk:
22+
- Pharo64-12
23+
- Pharo64-13
24+
- Pharo64-14
25+
26+
steps:
27+
- name: Checkout
28+
uses: actions/checkout@v4
29+
30+
- name: Set up smalltalkCI
31+
id: smalltalkci
32+
uses: hpi-swa/setup-smalltalkCI@v1
33+
with:
34+
smalltalk-image: ${{ matrix.smalltalk }}
35+
36+
- name: Run tests
37+
shell: bash
38+
run: smalltalkci -s "${{ steps.smalltalkci.outputs.smalltalk-image }}" .smalltalk.ston

README.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
# ArrowSyntaxRendering
22

3+
[![CI](https://github.com/Gabriel-Darbord/arrow-syntax-rendering/actions/workflows/ci.yml/badge.svg)](https://github.com/Gabriel-Darbord/arrow-syntax-rendering/actions/workflows/ci.yml)
4+
35
ArrowSyntaxRendering is a tiny Pharo package that renders Smalltalk assignment and return tokens as arrows in Rubric code editors.
46

57
It changes display only:

0 commit comments

Comments
 (0)