Skip to content

Commit 8f95805

Browse files
authored
Merge pull request #197 from JuliaAI/dump-julia-1.0
Dump support for Julia 1.0. Support 1.10 and higher.
2 parents b1801ee + 727b4df commit 8f95805

File tree

3 files changed

+7
-5
lines changed

3 files changed

+7
-5
lines changed

.github/workflows/ci.yml

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
fail-fast: false
1818
matrix:
1919
version:
20-
- '1.0'
20+
- '1.10'
2121
- '1' # automatically expands to the latest stable 1.x release of Julia.
2222
os:
2323
- ubuntu-latest
@@ -42,9 +42,11 @@ jobs:
4242
- uses: julia-actions/julia-buildpkg@v1
4343
- uses: julia-actions/julia-runtest@v1
4444
- uses: julia-actions/julia-processcoverage@v1
45-
- uses: codecov/codecov-action@v1
45+
- uses: codecov/codecov-action@v4
4646
with:
47-
file: lcov.info
47+
token: ${{ secrets.CODECOV_TOKEN }}
48+
fail_ci_if_error: false
49+
verbose: true
4850
docs:
4951
name: Documentation
5052
runs-on: ubuntu-latest

Project.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ Reexport = "1.2"
2323
ScientificTypesBase = "3.0"
2424
StatisticalTraits = "3.0"
2525
Tables = "1.6.1"
26-
julia = "1"
26+
julia = "1.10"
2727

2828
[extras]
2929
DataFrames = "a93c6f00-e57d-5684-b7b6-d8193f3e46c0"

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
| Linux | Coverage | Documentation |
44
| :-----------: | :------: | :-----------: |
5-
| [![Build Status](https://github.com/JuliaAI/ScientificTypes.jl/workflows/CI/badge.svg)](https://github.com/JuliaAI/ScientificTypes.jl/actions) | [![codecov.io](https://codecov.io/gh/JuliaAI/ScientificTypes.jl/graph/badge.svg?token=t7KNmNGLvj)](http://codecov.io/github/JuliaAI/ScientificTypes.jl?branch=master) | [![](https://img.shields.io/badge/docs-dev-blue.svg)](https://JuliaAI.github.io/ScientificTypes.jl/dev)
5+
| [![Build Status](https://github.com/JuliaAI/ScientificTypes.jl/workflows/CI/badge.svg)](https://github.com/JuliaAI/ScientificTypes.jl/actions) | [![codecov](https://codecov.io/gh/JuliaAI/ScientificTypes.jl/graph/badge.svg?token=t7KNmNGLvj)](https://codecov.io/gh/JuliaAI/ScientificTypes.jl) | [![](https://img.shields.io/badge/docs-dev-blue.svg)](https://JuliaAI.github.io/ScientificTypes.jl/dev)
66

77
This package makes a distinction between **machine type** and
88
**scientific type** of a Julia object:

0 commit comments

Comments
 (0)