Skip to content

Commit 814ef0c

Browse files
authored
Update Colors compatibility to include version 0.13 (#181)
* Update Colors compatibility to include version 0.13 * Update actions in the CI workflow to their latest versions
1 parent d1f7103 commit 814ef0c

File tree

3 files changed

+26
-5
lines changed

3 files changed

+26
-5
lines changed

.github/workflows/ci.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,12 +18,12 @@ jobs:
1818
arch:
1919
- x64
2020
steps:
21-
- uses: actions/checkout@v2
22-
- uses: julia-actions/setup-julia@v1
21+
- uses: actions/checkout@v4
22+
- uses: julia-actions/setup-julia@v2
2323
with:
2424
version: ${{ matrix.version }}
2525
arch: ${{ matrix.arch }}
26-
- uses: actions/cache@v1
26+
- uses: julia-actions/cache@v2
2727
env:
2828
cache-name: cache-artifacts
2929
with:

Project.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
name = "InteractBase"
22
uuid = "d3863d7c-f0c8-5437-a7b4-3ae773c01009"
3-
version = "0.10.10"
3+
version = "0.10.11"
44

55
[deps]
66
Base64 = "2a0f44e3-6c83-55bd-87e4-b1978d98bd5f"
@@ -18,7 +18,7 @@ Widgets = "cc8bc4a8-27d6-5769-a93b-9d913e69aa62"
1818

1919
[compat]
2020
CSSUtil = "0.1"
21-
Colors = "0.10, 0.11, 0.12"
21+
Colors = "0.10, 0.11, 0.12, 0.13"
2222
JSExpr = "0.3,0.4,0.5"
2323
JSON = "0.18, 0.19, 0.20, 0.21"
2424
Knockout = "0.2.1"

README.md

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,3 +5,24 @@
55
[![codecov.io](http://codecov.io/github/JuliaGizmos/InteractBase.jl/coverage.svg?branch=master)](http://codecov.io/github/JuliaGizmos/InteractBase.jl?branch=master)
66

77
This package is a developer target and it includes the implementation of [Interact](https://github.com/JuliaGizmos/Interact.jl) widgets. The user-facing package is [Interact](https://github.com/JuliaGizmos/Interact.jl) See [the API reference](https://juliagizmos.github.io/Interact.jl/latest/widgets.html) to see which widgets are implemented.
8+
9+
## Testing
10+
11+
1. Navigate into the project directory with
12+
```
13+
cd ~/path/to/InteractBase.jl
14+
```
15+
16+
2. Download the package dependencies with
17+
```
18+
julia --project=. ./deps/build.jl
19+
```
20+
21+
3. Test the package with
22+
```
23+
julia --threads=auto --project=.
24+
```
25+
and then
26+
```
27+
]test
28+
```

0 commit comments

Comments
 (0)