Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 10 additions & 0 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
version: 2
updates:
- package-ecosystem: "julia"
directory: "/"
schedule:
interval: "weekly"
- package-ecosystem: "github-actions"
directory: "/"
schedule:
interval: "weekly"
20 changes: 0 additions & 20 deletions .github/workflows/jlpkgbutler-butler-workflow.yml

This file was deleted.

40 changes: 0 additions & 40 deletions .github/workflows/jlpkgbutler-ci-master-workflow.yml

This file was deleted.

38 changes: 0 additions & 38 deletions .github/workflows/jlpkgbutler-ci-pr-workflow.yml

This file was deleted.

21 changes: 0 additions & 21 deletions .github/workflows/jlpkgbutler-codeformat-pr-workflow.yml

This file was deleted.

19 changes: 0 additions & 19 deletions .github/workflows/jlpkgbutler-compathelper-workflow.yml

This file was deleted.

13 changes: 0 additions & 13 deletions .github/workflows/jlpkgbutler-tagbot-workflow.yml

This file was deleted.

17 changes: 17 additions & 0 deletions .github/workflows/juliaci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
name: Julia CI

on:
push: {branches: [main,master]}
pull_request: {types: [opened,synchronize,reopened,ready_for_review,converted_to_draft]}
issue_comment: {types: [created]}
workflow_dispatch: {inputs: {feature: {type: choice, description: What to run, options: [DocDeploy,LintAndTest,TagBot]}}}

jobs:
julia-ci:
uses: julia-testitems/testitem-workflow/.github/workflows/juliaci.yml@v2
with:
include-all-compatible-minor-versions: true
include-rc-versions: true
permissions: write-all
secrets:
codecov_token: ${{ secrets.CODECOV_TOKEN }}
8 changes: 8 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
*.jl.cov
*.jl.*.cov
*.jl.mem
docs/build/
docs/Manifest.toml
test-output*.*
.vscode
Manifest.toml
1 change: 0 additions & 1 deletion .jlpkgbutler.toml

This file was deleted.

2 changes: 1 addition & 1 deletion LICENSE.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
The DataValueInterfaces.jl package is licensed under the MIT "Expat" License:

> Copyright (c) 2019: Jacob Quinn and David Anthoff.
> Copyright (c) 2019-2026: Jacob Quinn and David Anthoff.
>
> Permission is hereby granted, free of charge, to any person obtaining
> a copy of this software and associated documentation files (the
Expand Down
3 changes: 2 additions & 1 deletion Project.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,8 @@ version = "1.0.0"
julia = "1"

[extras]
TestItemRunner = "f8b46487-2199-4994-9208-9a1283c18c0a"
Test = "8dfed614-e22c-5e08-85e1-65c5234f0b40"

[targets]
test = ["Test"]
test = ["Test", "TestItemRunner"]
5 changes: 2 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,9 +1,8 @@
# DataValueInterfaces

[![Project Status: Active - The project has reached a stable, usable state and is being actively developed.](http://www.repostatus.org/badges/latest/active.svg)](http://www.repostatus.org/#active)
[![Build Status](https://travis-ci.org/queryverse/DataValueInterfaces.jl.svg?branch=master)](https://travis-ci.org/queryverse/DataValueInterfaces.jl)
[![Build status](https://ci.appveyor.com/api/projects/status/96kswxnr75u4ob2m/branch/master?svg=true)](https://ci.appveyor.com/project/queryverse/datavalueinterfaces-jl/branch/master)
[![Build Status](https://github.com/queryverse/DataValueInterfaces.jl/actions/workflows/juliaci.yml/badge.svg?branch=main)](https://github.com/queryverse/DataValueInterfaces.jl/actions/workflows/juliaci.yml)
[![codecov](https://codecov.io/gh/queryverse/DataValueInterfaces.jl/branch/master/graph/badge.svg)](https://codecov.io/gh/queryverse/DataValueInterfaces.jl)

### Purpose
This package allows a few "forward" definitions for the DataValues.jl package that other packages can utilize for integration without having to take direct dependencies. Please open an issue with questions on how to use.
This package allows a few "forward" definitions for the DataValues.jl package that other packages can utilize for integration without having to take direct dependencies. Please open an issue with questions on how to use.
20 changes: 3 additions & 17 deletions test/runtests.jl
Original file line number Diff line number Diff line change
@@ -1,19 +1,5 @@
using Test, DataValueInterfaces
using TestItemRunner

@testset "DataValueInterfaces" begin
include("test_datavalueinterfaces.jl")

@testset "nondatavaluetype" begin

@test DataValueInterfaces.nondatavaluetype(Int64) == Int64
@test DataValueInterfaces.nondatavaluetype(Union{}) == Union{}

end

@testset "datavaluetype" begin

@test DataValueInterfaces.datavaluetype(Int64) == Int64
@test DataValueInterfaces.datavaluetype(Union{}) == Union{}

end

end # @testset "DataValueInterfaces"
@run_package_tests
9 changes: 9 additions & 0 deletions test/test_datavalueinterfaces.jl
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
@testitem "nondatavaluetype" begin
@test DataValueInterfaces.nondatavaluetype(Int64) == Int64
@test DataValueInterfaces.nondatavaluetype(Union{}) == Union{}
end

@testitem "datavaluetype" begin
@test DataValueInterfaces.datavaluetype(Int64) == Int64
@test DataValueInterfaces.datavaluetype(Union{}) == Union{}
end
Loading