Skip to content

Commit f7149bf

Browse files
Minor fixes (#93)
* Run Maven workflow only on source changes. * Fix link.
1 parent 4a4efaa commit f7149bf

File tree

2 files changed

+5
-3
lines changed

2 files changed

+5
-3
lines changed

.github/workflows/maven.yml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,9 +10,11 @@ name: Java CI with Maven
1010

1111
on:
1212
push:
13-
branches: [ "master" ]
13+
branches: ["master"]
14+
paths: ["src/**"]
1415
pull_request:
15-
branches: [ "master" ]
16+
branches: ["master"]
17+
paths: ["src/**"]
1618

1719
jobs:
1820
build:

docs/lang_ref/index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,4 +9,4 @@ nav_order: 5
99
This set of documents describes the Formulog language (as opposed to its current implementation).
1010
Please raise a [GitHub issue](https://github.com/HarvardPL/formulog/issues/new) if anything is unclear, incomplete, or incorrect :)
1111

12-
For an overview of Formulog and its motivations, we recommend checking out our [publications]({{ site.baseurl }}{% link pubs.md %}).
12+
For an overview of Formulog and its motivations, we recommend checking out our [publications]({{ site.base_url }}{% link pubs.md %}).

0 commit comments

Comments
 (0)