Skip to content

Commit

Permalink
Updated to travis-ci.com
Browse files Browse the repository at this point in the history
  • Loading branch information
mauro3 committed Dec 4, 2019
1 parent ed2a78f commit 34a3263
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 7 deletions.
4 changes: 4 additions & 0 deletions appveyor.yml → .appveyor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,3 +34,7 @@ build_script:
test_script:
- echo "%JL_TEST_SCRIPT%"
- C:\julia\bin\julia -e "%JL_TEST_SCRIPT%"

on_success:
- echo "%JL_CODECOV_SCRIPT%"
- C:\julia\bin\julia -e "%JL_CODECOV_SCRIPT%"
1 change: 1 addition & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@ git:
depth: 99999
## Documeter.jl https://discourse.julialang.org/t/psa-use-a-project-for-building-your-docs/14974/5
jobs:
- julia -e 'using Pkg; Pkg.add("Coverage"); using Coverage; Codecov.submit(process_folder())'
include:
- stage: "Documentation"
julia: 1.0
Expand Down
2 changes: 1 addition & 1 deletion LICENSE.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
The Parameters.jl package is licensed under the MIT "Expat" License:

> Copyright (c) 2015: Mauro Werder.
> Copyright (c) 2015-2019: Mauro Werder.
>
> Permission is hereby granted, free of charge, to any person obtaining
> a copy of this software and associated documentation files (the
Expand Down
9 changes: 3 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,14 +3,11 @@
[![](https://img.shields.io/badge/docs-stable-blue.svg)](https://mauro3.github.io/Parameters.jl/stable)
[![](https://img.shields.io/badge/docs-latest-blue.svg)](https://mauro3.github.io/Parameters.jl/latest)

[![Build Status](https://travis-ci.org/mauro3/Parameters.jl.svg?branch=master)](https://travis-ci.org/mauro3/Parameters.jl)
[![Build Status](https://travis-ci.com/mauro3/Parameters.jl.svg?branch=master)](https://travis-ci.com/mauro3/Parameters.jl)
[![Build Status](https://ci.appveyor.com/api/projects/status/github/mauro3/Parameters.jl?branch=master&svg=true)](https://ci.appveyor.com/project/mauro3/parameters-jl/branch/master)

[![codecov](https://codecov.io/gh/mauro3/Parameters.jl/branch/master/graph/badge.svg)](https://codecov.io/gh/mauro3/Parameters.jl)

<!-- [![Parameters](http://pkg.julialang.org/badges/Parameters_0.6.svg)](http://pkg.julialang.org/?pkg=Parameters) -->
<!-- [![Parameters](http://pkg.julialang.org/badges/Parameters_0.7.svg)](http://pkg.julialang.org/detail/Parameters) -->

This is a package I use to handle numerical-model parameters, thus the
name. However, it should be useful otherwise too. It has two main
features:
Expand Down Expand Up @@ -133,8 +130,8 @@ Implementing similar things:
the syntax is less nice than Parameters.jl.
- [ExtractMacro.jl](https://github.com/carlobaldassi/ExtractMacro.jl) also has
the `@unpack` functionality.
- [FieldDefaults.jl](https://github.com/rafaqz/FieldDefaults.jl) also has
keyword defaults. You can use it as a minimalist replacement for Parameters.jl
- [FieldDefaults.jl](https://github.com/rafaqz/FieldDefaults.jl) also has
keyword defaults. You can use it as a minimalist replacement for Parameters.jl
with the aid of [FieldMetadata.jl](https://github.com/rafaqz/FieldMetadata.jl)
and [Flatten.jl](https://github.com/rafaqz/Flatten.jl).
Expand Down

0 comments on commit 34a3263

Please sign in to comment.