Skip to content

Commit

Permalink
Update README (#96)
Browse files Browse the repository at this point in the history
* remove unnecessary space

* update `actions/checkout@v2` to `actions/checkout@v4`

* add link to #76

* replace 1.0 with 1.6 (the current LTS)
  • Loading branch information
hyrodium authored Feb 1, 2024
1 parent 2b24f9b commit d4b6651
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ An example workflow that uses this action might look like this:
```yaml
name: Run tests

on:
on:
push:
branches:
- master
Expand All @@ -23,15 +23,15 @@ 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:
- os: macOS-latest
julia-arch: x86

steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
- uses: julia-actions/setup-julia@v1
with:
version: ${{ matrix.julia-version }}
Expand All @@ -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
Expand Down

0 comments on commit d4b6651

Please sign in to comment.