Skip to content

Commit 691b4cf

Browse files
authored
add Aqua.jl in test (#104)
1 parent d15ad86 commit 691b4cf

File tree

3 files changed

+7
-1
lines changed

3 files changed

+7
-1
lines changed

Project.toml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,10 +7,12 @@ LinearAlgebra = "37e2e46d-f89d-539d-b4ee-838fcccc9c8e"
77
Random = "9a3f8284-a2c9-5f02-9a11-845980a1fd5c"
88

99
[compat]
10+
Aqua = "0.5"
1011
julia = "1"
1112

1213
[extras]
14+
Aqua = "4c88cf16-eb10-579e-8560-4a9242c79595"
1315
Test = "8dfed614-e22c-5e08-85e1-65c5234f0b40"
1416

1517
[targets]
16-
test = ["Test"]
18+
test = ["Test", "Aqua"]

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@ A Julia implementation of quaternions.
55
[![Dev](https://img.shields.io/badge/docs-dev-blue.svg)](https://JuliaGeometry.github.io/Quaternions.jl/dev)
66
[![Build Status](https://github.com/JuliaGeometry/Quaternions.jl/workflows/CI/badge.svg)](https://github.com/JuliaGeometry/Quaternions.jl/actions?query=workflow%3ACI+branch%3Amaster)
77
[![codecov](https://codecov.io/gh/JuliaGeometry/Quaternions.jl/branch/master/graph/badge.svg?token=dJBiR91dCD)](https://codecov.io/gh/JuliaGeometry/Quaternions.jl)
8+
[![Aqua QA](https://raw.githubusercontent.com/JuliaTesting/Aqua.jl/master/badge.svg)](https://github.com/JuliaTesting/Aqua.jl)
89

910
[Quaternions](http://en.wikipedia.org/wiki/Quaternion) are best known for their suitability
1011
as representations of 3D rotational orientation. They can also be viewed as an extension of complex numbers.

test/runtests.jl

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
11
using Test
22
using Quaternions
3+
using Aqua
4+
5+
Aqua.test_all(Quaternions)
36

47
include("helpers.jl")
58
include("Quaternion.jl")

0 commit comments

Comments
 (0)