Skip to content

Commit 754ff49

Browse files
authored
Merge pull request #176 from plotly/jl_test-worfflow
Add Julia test workflow
2 parents a6ebf73 + f744c70 commit 754ff49

File tree

3 files changed

+22
-1
lines changed

3 files changed

+22
-1
lines changed

.github/workflows/jl_test.yml

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
name: Run Julia tests
2+
3+
on: [push, pull_request]
4+
5+
jobs:
6+
test:
7+
runs-on: ubuntu-latest
8+
strategy:
9+
fail-fast: false
10+
matrix:
11+
jl_version: ["1.4", "1.6", "1.8"]
12+
steps:
13+
- uses: actions/checkout@v2
14+
- uses: julia-actions/setup-julia@v1
15+
with:
16+
version: ${{ matrix.jl_version }}
17+
- uses: julia-actions/julia-buildpkg@v1
18+
- uses: julia-actions/julia-runtest@v1
19+
with:
20+
annotate: true

Project.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,8 +36,8 @@ JSON3 = "1.9"
3636
MD5 = "0.2"
3737
PlotlyBase = "0.8.5, 0.8.6"
3838
YAML = "0.4.7"
39-
julia = "1.3"
4039
Requires = "1.3"
40+
julia = "1.4"
4141

4242
[extras]
4343
Test = "8dfed614-e22c-5e08-85e1-65c5234f0b40"

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
# Dash for Julia
22

3+
[![Juila tests](https://github.com/plotly/Dash.jl/actions/workflows/jl_test.yml/badge.svg)](https://github.com/plotly/Dash.jl/actions/workflows/jl_test.yml)
34
[![CircleCI](https://circleci.com/gh/plotly/Dash.jl/tree/master.svg?style=svg)](https://circleci.com/gh/plotly/Dash.jl/tree/master)
45
[![GitHub](https://img.shields.io/github/license/plotly/dashR.svg?color=dark-green)](https://github.com/plotly/Dash.jl/blob/master/LICENSE)
56
[![GitHub commit activity](https://img.shields.io/github/commit-activity/y/plotly/Dash.jl.svg?color=dark-green)](https://github.com/plotly/Dash.jl/graphs/contributors)

0 commit comments

Comments
 (0)