We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 05d4fc6 commit 33e55eeCopy full SHA for 33e55ee
1 file changed
.circleci/config.yml
@@ -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
27
+ name: 🔎 Unit tests
28
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