Skip to content

Commit 7702fae

Browse files
committed
Rename + clean CI
1 parent f63b485 commit 7702fae

File tree

3 files changed

+16
-28
lines changed

3 files changed

+16
-28
lines changed

.github/workflows/test.yml

Lines changed: 5 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -1,32 +1,22 @@
1-
21
name: CI
32

4-
env:
5-
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
6-
7-
# Controls when the action will run. Triggers the workflow on push or pull request
8-
# events but only for the development branch
9-
on:
10-
push:
11-
branches:
12-
- '**'
13-
pull_request:
14-
types: [assigned, opened, synchronize, reopened]
3+
on: [ push, pull_request ]
154

165
jobs:
176
build:
187
runs-on: ubuntu-latest
198
env:
20-
PROJECT_NAME: PolyMathDataStructures-${{ matrix.smalltalk }}
9+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
10+
PROJECT_NAME: MathVectorMatrix-${{ matrix.smalltalk }}
2111
strategy:
2212
matrix:
2313
smalltalk: [ Pharo64-9.0, Pharo64-10, Pharo64-11 ]
2414
name: ${{ matrix.smalltalk }}
2515
steps:
26-
- uses: actions/checkout@v2
16+
- uses: actions/checkout@v3
2717
- uses: hpi-swa/setup-smalltalkCI@v1
2818
with:
29-
smalltalk-version: ${{ matrix.smalltalk }}
19+
smalltalk-image: ${{ matrix.smalltalk }}
3020
- run: smalltalkci -s ${{ matrix.smalltalk }}
3121
shell: bash
3222
timeout-minutes: 15

.smalltalk.ston

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,14 @@
11
SmalltalkCISpec {
22
#loading : [
33
SCIMetacelloLoadSpec {
4-
#baseline : 'PolyMathDataStructures',
5-
#directory : 'src',
6-
#platforms : [ #pharo ]
4+
#baseline : 'MathVectorMatrix',
5+
#directory : 'src'
76
}
87
],
98
#testing : {
109
#coverage : {
1110
#packages : [
12-
'Math-Core*',
13-
'Math-Matrix*' ]
11+
'Math-*' ]
1412
}
1513
}
1614
}

README.md

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<p align="center"><img alt="PolyMath" src="https://raw.githubusercontent.com/PolyMathOrg/PolyMath/master/assets/logos/logo.png" style="width: 25%; height: 25%">
2-
<h1 align="center">[PolyMath Data Structures]</h1>
2+
<h1 align="center">[Vector Matrix]</h1>
33
<p align="center">
44
Scientific Computing with Pharo
55
<br>
@@ -12,9 +12,9 @@
1212
</p>
1313
</p>
1414

15-
[![CI](https://github.com/PolyMathOrg/PolyMath-DataStructures/actions/workflows/test.yml/badge.svg)](https://github.com/PolyMathOrg/PolyMath-DataStructures/actions/workflows/test.yml)
16-
[![Coverage Status](https://coveralls.io/repos/github/PolyMathOrg/PolyMath-DataStructures/badge.svg?branch=master)](https://coveralls.io/github/PolyMathOrg/PolyMath-DataStructures?branch=master)
17-
[![License](https://img.shields.io/badge/license-MIT-blue.svg)](https://raw.githubusercontent.com/PolyMathOrg/PolyMath-DataStructures/master/LICENSE)
15+
[![CI](https://github.com/PolyMathOrg/vector-matrix/actions/workflows/test.yml/badge.svg)](https://github.com/PolyMathOrg/vector-matrix/actions/workflows/test.yml)
16+
[![Coverage Status](https://coveralls.io/repos/github/PolyMathOrg/vector-matrix/badge.svg?branch=master)](https://coveralls.io/github/PolyMathOrg/vector-matrix?branch=master)
17+
[![License](https://img.shields.io/badge/license-MIT-blue.svg)](https://raw.githubusercontent.com/PolyMathOrg/vector-matrix/master/LICENSE)
1818

1919
## Description
2020

@@ -26,8 +26,8 @@ You can load all the packages into a fresh Pharo image by going to the Playgroun
2626

2727
```smalltalk
2828
Metacello new
29-
baseline: 'PolyMathDataStructures';
30-
repository: 'github://PolyMathOrg/PolyMath-DataStructures/src';
29+
baseline: 'MathVectorMatrix';
30+
repository: 'github://PolyMathOrg/vector-matrix/src';
3131
onWarningLog;
3232
onConflictUseIncoming;
3333
load ]
@@ -39,8 +39,8 @@ To add it to your Baseline:
3939

4040
```smalltalk
4141
spec
42-
baseline: 'PolyMathDataStructures'
43-
with: [ spec repository: 'github://PolyMathOrg/PolyMath-DataStructures/src' ]
42+
baseline: 'MathVectorMatrix'
43+
with: [ spec repository: 'github://PolyMathOrg/vector-matrix/src' ]
4444
```
4545

4646
If you are new to baselines and Metacello, check out the [Baselines](https://github.com/pharo-open-documentation/pharo-wiki/blob/master/General/Baselines.md) tutorial on Pharo Wiki.

0 commit comments

Comments
 (0)