Skip to content

Commit

Permalink
Merge pull request #21 from tylerjthomas9/dev
Browse files Browse the repository at this point in the history
Add Aqua.jl
tylerjthomas9 authored Feb 1, 2024

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
2 parents fd7b25b + fffbfc8 commit 2932040
Showing 4 changed files with 11 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -26,7 +26,7 @@ jobs:
arch:
- x64
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- uses: julia-actions/setup-julia@v1
with:
version: ${{ matrix.version }}
8 changes: 6 additions & 2 deletions Project.toml
Original file line number Diff line number Diff line change
@@ -12,15 +12,19 @@ Term = "22787eb5-b846-44ae-b979-8e399b8463ab"
ZipFile = "a5390f91-8eb1-5f08-bee0-b1d1ffed6cea"

[compat]
Aqua = "0.8"
CSV = "0.9, 0.10"
DataFrames = "1"
Dates = "1.6"
HTTP = "1"
Term = "1, 2"
Term = "2"
Test = "1.6"
ZipFile = "0.9, 0.10"
julia = "1.6"

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

[targets]
test = ["Test"]
test = ["Aqua", "Test"]
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -3,6 +3,7 @@
[![CI](https://github.com/tylerjthomas9/ScrapeSEC.jl/actions/workflows/ci.yml/badge.svg)](https://github.com/tylerjthomas9/ScrapeSEC.jl/actions/workflows/ci.yml)
[![Code Style: Blue](https://img.shields.io/badge/code%20style-blue-4495d1.svg)](https://github.com/invenia/BlueStyle)
[![Coverage](http://codecov.io/github/tylerjthomas9/ScrapeSEC.jl/coverage.svg?branch=main)](https://codecov.io/gh/tylerjthomas9/ScrapeSEC.jl)
[![Aqua QA](https://raw.githubusercontent.com/JuliaTesting/Aqua.jl/master/badge.svg)](https://github.com/JuliaTesting/Aqua.jl)



3 changes: 3 additions & 0 deletions test/runtests.jl
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
using Aqua
using ScrapeSEC
using Test

@@ -9,3 +10,5 @@ for t in tests
println("* $fp ...")
include(fp)
end

Aqua.test_all(ScrapeSEC, ambiguities=false)

0 comments on commit 2932040

Please sign in to comment.