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
17 changes: 17 additions & 0 deletions .github/workflows/check-asciidoc.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
name: build
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
run:
name: Check asciidoc
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- run: sudo apt install asciidoc-base
- run: asciidoc README.adoc

2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,8 @@
- Adjust `stats` computation of average and standard deviation to
limit precision loss, print both using scientific notation, and
workaround MinGW float printing to also pass expect tests
- Fix dune snippets missing a language specifier in README.adoc
causing `asciidoc` to error

## 0.24

Expand Down
6 changes: 2 additions & 4 deletions README.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 +23,6 @@ of interest:
Jan Midtgaard (@jmid) has http://janmidtgaard.dk/quickcheck/index.html[a lecture] about
property-based testing that relies on QCheck.

toc::[]

== Use

See the documentation. I also wrote
Expand Down Expand Up @@ -457,7 +455,7 @@ let _ = QCheck_runner.run_tests_main [test]

with the following `dune` file:

[source]
[source,lisp]
----
(test
(name test)
Expand Down Expand Up @@ -487,7 +485,7 @@ let _ = QCheck_base_runner.run_tests_main [test]
and adjust the `dune` file accordingly to use `qcheck-core` and its
`qcheck-core.runner` sub-package:

[source]
[source,lisp]
----
(test
(name test)
Expand Down