Skip to content

Commit 348a496

Browse files
authored
CI settings (#191)
* test on macos as well * don't test on nightly * make documentation on 1.10
1 parent 87a4c61 commit 348a496

File tree

2 files changed

+7
-7
lines changed

2 files changed

+7
-7
lines changed

.github/workflows/ci.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -14,19 +14,19 @@ jobs:
1414
- 'lts'
1515
- '1'
1616
- 'pre'
17-
- 'nightly'
1817
os:
1918
- ubuntu-latest
20-
# - macOS-latest
19+
- macOS-latest
2120
- windows-latest
22-
arch:
23-
- x64
21+
exclude:
22+
- os: macOS-latest # Apple Silicon
23+
version: '1.6'
2424
steps:
2525
- uses: actions/checkout@v4
2626
- uses: julia-actions/setup-julia@v2
2727
with:
2828
version: ${{ matrix.version }}
29-
arch: ${{ matrix.arch }}
29+
arch: 'default'
3030
show-versioninfo: true
3131
- uses: julia-actions/cache@v2
3232
- uses: julia-actions/julia-buildpkg@v1
@@ -38,7 +38,7 @@ jobs:
3838
- uses: actions/checkout@v4
3939
- uses: julia-actions/setup-julia@v2
4040
with:
41-
version: 1.7
41+
version: '1.10'
4242
- run: |
4343
julia --project=docs -e '
4444
using Pkg

src/optics.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -118,7 +118,7 @@ julia> la = @optic _.a
118118
lb = @optic _.b
119119
lc = @optic _.c
120120
lens = la ⨟ lb ⨟ lc
121-
(@o _.c) ∘ (@o _.a.b)
121+
(@o _.c) ∘ ((@o _.a.b))
122122
123123
julia> lens(obj)
124124
1

0 commit comments

Comments
 (0)