Skip to content

Commit 0c5fd15

Browse files
committed
Test also with Erlang/OTP 25.2
Since this PR would update the README anyway, took the opportunity to also fix the erroneous URI mentioned in the git clone command. (Thanks to @kikofernandez for noticing the issue in PR #302.)
1 parent 2846500 commit 0c5fd15

File tree

2 files changed

+8
-8
lines changed

2 files changed

+8
-8
lines changed

.github/workflows/ci.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020
strategy:
2121
matrix:
2222
otp:
23-
- "25.1.1"
23+
- "25.2"
2424
- "25.0"
2525
- "24.3"
2626
- "24.0"
@@ -44,7 +44,7 @@ jobs:
4444
examples:
4545
name: Test examples
4646
runs-on: ubuntu-latest
47-
container: erlang:25.1.1
47+
container: erlang:25.2
4848
steps:
4949
- name: Checkout code
5050
uses: actions/checkout@v3
@@ -54,7 +54,7 @@ jobs:
5454
parallel-examples:
5555
name: Test examples in parallel
5656
runs-on: ubuntu-latest
57-
container: erlang:25.1.1
57+
container: erlang:25.2
5858
steps:
5959
- name: Checkout code
6060
uses: actions/checkout@v3
@@ -64,7 +64,7 @@ jobs:
6464
coverage:
6565
name: Code coverage
6666
runs-on: ubuntu-latest
67-
container: erlang:25.1.1
67+
container: erlang:25.2
6868
steps:
6969
- name: Checkout code
7070
uses: actions/checkout@v3
@@ -74,7 +74,7 @@ jobs:
7474
run: make test
7575
env:
7676
COVER: true
77-
- name: Ping codecov
77+
- name: Upload coverage to Codecov
7878
uses: codecov/codecov-action@v3
7979
with:
8080
files: "_build/test/covertool/proper.covertool.xml"

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ base since 2012.
1818

1919
You can reach PropEr's developers in the following ways:
2020

21-
* on the web: at [the project's home page](http://proper-testing.github.io)
21+
* on the web: at [the project's home page](https://proper-testing.github.io)
2222
or [the project's github page](https://github.com/proper-testing/proper)
2323
* by email: take the tool's name (all lowercase), add a @ followed by
2424
softlab dot ntua dot gr
@@ -89,7 +89,7 @@ Quickstart guide
8989
base:
9090

9191
```shell
92-
git clone git://github.com/proper-testing/proper.git
92+
git clone git@github.com:proper-testing/proper.git
9393
```
9494
* Compile PropEr: Simply run `make` if you just want to build PropEr.
9595
If you want to do some changes to PropEr or submit some pull request you
@@ -195,7 +195,7 @@ incompatibilities between the two tools by now.
195195
<!-- Badges (alphabetically) -->
196196
[codecov badge]: https://codecov.io/gh/proper-testing/proper/branch/master/graph/badge.svg
197197
[commit badge]: https://img.shields.io/github/last-commit/proper-testing/proper.svg?style=flat-square
198-
[erlang versions badge]: https://img.shields.io/badge/erlang-21.0%20to%2025.1-blue.svg?style=flat-square
198+
[erlang versions badge]: https://img.shields.io/badge/erlang-21.0%20to%2025.2-blue.svg?style=flat-square
199199
[hex pm badge]: https://img.shields.io/hexpm/v/proper.svg?style=flat
200200
[license badge]: https://img.shields.io/github/license/proper-testing/proper.svg?style=flat-square
201201
[release badge]: https://img.shields.io/github/release/proper-testing/proper.svg?style=flat-square

0 commit comments

Comments
 (0)