Skip to content

Commit cb6d381

Browse files
authored
Update julia.md
1 parent 02bf22f commit cb6d381

File tree

1 file changed

+7
-8
lines changed

1 file changed

+7
-8
lines changed

user/languages/julia.md

Lines changed: 7 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,26 +1,25 @@
11
---
2-
title: Building a Julia Project
2+
title: Build a Julia Project
33
layout: en
44

55
---
66

7-
### What This Guide Covers
87

98
This guide covers build environment and configuration topics specific to
109
[Julia](http://julialang.org) projects. Please make sure to read our
1110
[Onboarding](/user/onboarding/) and
1211
[General Build configuration](/user/customizing-the-build/) guides first.
1312

14-
### Community-Supported Warning
13+
## Community-Supported Warning
1514

16-
Travis CI support for Julia is contributed by the community and may be removed
15+
Travis CI's support for Julia is contributed by the community and may be removed
1716
or altered at any time. If you run into any problems, please report them in the
1817
[Travis CI Julia Community Forums](https://travis-ci.community/c/languages/julia)
1918
and cc [@ararslan](https://github.com/ararslan), [@staticfloat](https://github.com/staticfloat), and [@StefanKarpinski](https://github.com/StefanKarpinski).
2019

21-
For general Julia support on Travis CI go to the [Travis Community](https://travis-ci.community/c/languages/julia) or [Julia Lang Slack Channel](https://julialang.org/slack/) in the __#testing__ channel.
20+
For general Julia support on Travis CI, go to the [Travis Community](https://travis-ci.community/c/languages/julia) or [Julia Lang Slack Channel](https://julialang.org/slack/) in the __#testing__ channel.
2221

23-
## Choosing Julia versions to test against
22+
## Test against Julia versions
2423

2524
Julia workers on Travis CI download and install a binary of Julia. You can specify
2625
the Julia versions to test in the `julia:` key in your `.travis.yml` file. For example:
@@ -41,7 +40,7 @@ of Julia.
4140
- `X.Y` will test against the latest release for that minor version.
4241
- `X.Y.Z` will test against that exact version.
4342

44-
The oldest versions for which binaries are available is 0.3.1 for Linux,
43+
The oldest version for which binaries are available is 0.3.1 for Linux,
4544
or 0.2.0 for [macOS](/user/multi-os/).
4645

4746
## Coverage
@@ -70,7 +69,7 @@ Pkg.build() # Pkg.build(; verbose = true) for Julia 1.1 and up
7069
Pkg.test(coverage=true)
7170
```
7271

73-
Otherwise it will use the older form:
72+
Otherwise, it will use the older form:
7473

7574
```julia
7675
if VERSION >= v"0.7.0-DEV.5183"

0 commit comments

Comments
 (0)