Skip to content

Commit d4b6651

Browse files
authored
Update README (#96)
* remove unnecessary space * update `actions/checkout@v2` to `actions/checkout@v4` * add link to #76 * replace 1.0 with 1.6 (the current LTS)
1 parent 2b24f9b commit d4b6651

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

README.md

+4-4
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ An example workflow that uses this action might look like this:
1111
```yaml
1212
name: Run tests
1313

14-
on:
14+
on:
1515
push:
1616
branches:
1717
- master
@@ -23,15 +23,15 @@ jobs:
2323
runs-on: ${{ matrix.os }}
2424
strategy:
2525
matrix:
26-
julia-version: ['1.0', '1', 'nightly']
26+
julia-version: ['1.6', '1', 'nightly']
2727
julia-arch: [x64, x86]
2828
os: [ubuntu-latest, windows-latest, macOS-latest]
2929
exclude:
3030
- os: macOS-latest
3131
julia-arch: x86
3232

3333
steps:
34-
- uses: actions/checkout@v2
34+
- uses: actions/checkout@v4
3535
- uses: julia-actions/setup-julia@v1
3636
with:
3737
version: ${{ matrix.julia-version }}
@@ -45,7 +45,7 @@ jobs:
4545
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).
4646

4747
Here, setting `annotate: true` causes GitHub "annotations" to appear when reviewing the PR, pointing to failing tests, if any.
48-
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).
48+
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)).
4949

5050
By default, `annotate` is set to false, but that may change in future releases of this action.
5151
### Prefixing the Julia command

0 commit comments

Comments
 (0)