Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 5 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,8 @@ jobs:
strategy:
matrix:
otp:
- "27.3"
- "27.0"
- "26.2"
- "26.0"
- "25.3"
Expand All @@ -44,7 +46,7 @@ jobs:
examples:
name: Test examples
runs-on: ubuntu-latest
container: erlang:26.2
container: erlang:27.3
steps:
- name: Checkout code
uses: actions/checkout@v4
Expand All @@ -54,7 +56,7 @@ jobs:
parallel-examples:
name: Test examples in parallel
runs-on: ubuntu-latest
container: erlang:26.2
container: erlang:27.3
steps:
- name: Checkout code
uses: actions/checkout@v4
Expand All @@ -64,7 +66,7 @@ jobs:
coverage:
name: Code coverage
runs-on: ubuntu-latest
container: erlang:26.2
container: erlang:27.3
steps:
- name: Checkout code
uses: actions/checkout@v4
Expand Down
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ dialyzer: .plt/proper_plt compile
dialyzer --plt $< -Wunmatched_returns ebin

.plt/proper_plt: .plt
dialyzer --build_plt --output_plt $@ --apps erts kernel stdlib compiler crypto syntax_tools mnesia tools runtime_tools
dialyzer --build_plt --output_plt $@ --apps erts kernel stdlib compiler crypto syntax_tools mnesia tools parsetools runtime_tools

check_escripts:
./scripts/check_escripts.sh make_doc
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -195,7 +195,7 @@ incompatibilities between the two tools by now.
<!-- Badges (alphabetically) -->
[codecov badge]: https://codecov.io/gh/proper-testing/proper/branch/master/graph/badge.svg
[commit badge]: https://img.shields.io/github/last-commit/proper-testing/proper.svg?style=flat-square
[erlang versions badge]: https://img.shields.io/badge/erlang-21.3%20to%2026.2-blue.svg?style=flat-square
[erlang versions badge]: https://img.shields.io/badge/erlang-21.3%20to%2027.3-blue.svg?style=flat-square
[hex pm badge]: https://img.shields.io/hexpm/v/proper.svg?style=flat
[license badge]: https://img.shields.io/github/license/proper-testing/proper.svg?style=flat-square
[release badge]: https://img.shields.io/github/release/proper-testing/proper.svg?style=flat-square
Expand Down
4 changes: 2 additions & 2 deletions rebar.config
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
%%% -*- coding: utf-8; erlang-indent-level: 2 -*-
%%% -------------------------------------------------------------------
%%% Copyright 2010-2024 Manolis Papadakis <manopapad@gmail.com>,
%%% Copyright 2010-2025 Manolis Papadakis <manopapad@gmail.com>,
%%% Eirini Arvaniti <eirinibob@gmail.com>,
%%% and Kostis Sagonas <kostis@cs.ntua.gr>
%%%
Expand Down Expand Up @@ -58,7 +58,7 @@
{post_hooks, []}.

{dialyzer, [{warnings, [unmatched_returns, unknown]},
{plt_extra_apps, [erts, kernel, stdlib, compiler, crypto, syntax_tools]}]}.
{plt_extra_apps, [erts, kernel, stdlib, compiler, crypto, syntax_tools, tools, runtime_tools, parsetools]}]}.

{project_plugins, [covertool]}.
{cover_export_enabled, true}.
Expand Down