From 6bc9a36bb4a8e0636f8f57fd13e961acd1465586 Mon Sep 17 00:00:00 2001 From: hyrodium Date: Sun, 28 Jan 2024 13:17:49 +0900 Subject: [PATCH 1/4] remove unnecessary space --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index feda4ca..00f3172 100644 --- a/README.md +++ b/README.md @@ -11,7 +11,7 @@ An example workflow that uses this action might look like this: ```yaml name: Run tests -on: +on: push: branches: - master From 307af165f25deb86b45f491e20e247042c487b22 Mon Sep 17 00:00:00 2001 From: hyrodium Date: Sun, 28 Jan 2024 13:18:39 +0900 Subject: [PATCH 2/4] update `actions/checkout@v2` to `actions/checkout@v4` --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 00f3172..21a5dd1 100644 --- a/README.md +++ b/README.md @@ -31,7 +31,7 @@ jobs: julia-arch: x86 steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v4 - uses: julia-actions/setup-julia@v1 with: version: ${{ matrix.julia-version }} From 9bae6b31dade1fd5c31822a8bcc70a8439c4b2ca Mon Sep 17 00:00:00 2001 From: hyrodium Date: Sun, 28 Jan 2024 13:19:27 +0900 Subject: [PATCH 3/4] add link to #76 --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 21a5dd1..c30b4e5 100644 --- a/README.md +++ b/README.md @@ -45,7 +45,7 @@ jobs: You can add this workflow to your repository by placing it in a file called `test.yml` in the folder `.github/workflows/`. [More info here](https://docs.github.com/en/actions/reference/workflow-syntax-for-github-actions). Here, setting `annotate: true` causes GitHub "annotations" to appear when reviewing the PR, pointing to failing tests, if any. -This functionality is only enabled on Julia 1.8 (even if `annotate` is set to `true`), since currently it does not work on other Julia versions (see #76). +This functionality is only enabled on Julia 1.8 (even if `annotate` is set to `true`), since currently it does not work on other Julia versions (see [#76](https://github.com/julia-actions/julia-runtest/issues/76)). By default, `annotate` is set to false, but that may change in future releases of this action. ### Prefixing the Julia command From 02c66ab112012b6ad806d0857e5e70b7a251ed2f Mon Sep 17 00:00:00 2001 From: hyrodium Date: Sun, 28 Jan 2024 13:20:10 +0900 Subject: [PATCH 4/4] replace 1.0 with 1.6 (the current LTS) --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index c30b4e5..3fb89bd 100644 --- a/README.md +++ b/README.md @@ -23,7 +23,7 @@ jobs: runs-on: ${{ matrix.os }} strategy: matrix: - julia-version: ['1.0', '1', 'nightly'] + julia-version: ['1.6', '1', 'nightly'] julia-arch: [x64, x86] os: [ubuntu-latest, windows-latest, macOS-latest] exclude: