Skip to content
/ Dash.jl Public

Commit 33e55ee

Browse files
author
Ryan Patrick Kyle
committedApr 27, 2020
✨ add config.yml
1 parent 05d4fc6 commit 33e55ee

File tree

1 file changed

+35
-0
lines changed

1 file changed

+35
-0
lines changed
 

Diff for: ‎.circleci/config.yml

+35
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,35 @@
1+
version: 2
2+
3+
jobs:
4+
5+
test:
6+
working_directory: /root/project/Dash
7+
8+
docker:
9+
- image: julia:latest
10+
11+
steps:
12+
- checkout
13+
14+
- run:
15+
name: ℹ️ CI Context
16+
command: |
17+
echo "TRIGGERER: ${CIRCLE_USERNAME}"
18+
echo "BUILD_NUMBER: ${CIRCLE_BUILD_NUM}"
19+
echo "BUILD_URL: ${CIRCLE_BUILD_URL}"
20+
echo "BRANCH: ${CIRCLE_BRANCH}"
21+
echo "RUNNING JOB: ${CIRCLE_JOB}"
22+
echo "JOB PARALLELISM: ${CIRCLE_NODE_TOTAL}"
23+
echo "CIRCLE_REPOSITORY_URL: ${CIRCLE_REPOSITORY_URL}"
24+
echo $CIRCLE_JOB > circlejob.txt
25+
26+
- run:
27+
name: 🔎 Unit tests
28+
command: |
29+
julia -e 'using Pkg; Pkg.update(); Pkg.add(PackageSpec(path=pwd())); Pkg.build("Dash"); Pkg.test("Dash", coverage=true);'
30+
31+
workflows:
32+
version: 2
33+
build:
34+
jobs:
35+
- "test"

0 commit comments

Comments
 (0)
Please sign in to comment.