Skip to content

Commit

Permalink
Switch to github actions (#75)
Browse files Browse the repository at this point in the history
* Switch to github actions
* Update links
  • Loading branch information
juliangehring authored Jan 3, 2021
1 parent c09aed5 commit 27f0997
Show file tree
Hide file tree
Showing 8 changed files with 80 additions and 42 deletions.
5 changes: 5 additions & 0 deletions .codecov.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
coverage:
precision: 1
round: nearest

comment: false
32 changes: 32 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
name: Testing

on:
- push
- pull_request

jobs:
test:
name: Julia ${{ matrix.version }} - ${{ matrix.os }} - ${{ matrix.arch }}
runs-on: ${{ matrix.os }}
strategy:
matrix:
version:
- '1.0'
- '1'
os:
- ubuntu-latest
- macOS-latest
- windows-latest
arch:
- x64
steps:
- uses: actions/checkout@v2
- uses: julia-actions/setup-julia@v1
with:
version: ${{ matrix.version }}
arch: ${{ matrix.arch }}
- uses: julia-actions/julia-buildpkg@latest
- uses: julia-actions/julia-runtest@latest
- uses: julia-actions/julia-uploadcodecov@latest
env:
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}
20 changes: 20 additions & 0 deletions .github/workflows/documentation.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
name: Documentation

on:
push:
branches:
- master
tags: [v*]
pull_request:

jobs:
Documenter:
name: Documentation
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: julia-actions/julia-buildpkg@latest
- uses: julia-actions/julia-docdeploy@latest
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
DOCUMENTER_KEY: ${{ secrets.DOCUMENTER_KEY }}
27 changes: 0 additions & 27 deletions .travis.yml

This file was deleted.

8 changes: 8 additions & 0 deletions NEWS.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
# Bootstrap.jl News and Changes

## [unreleased]

### Changes

- Switch to Github Actions for testing and documentation generation (#75).
- Update links to external webpages in the documentation (#75).


## Version 2.2.1

### Changes
Expand Down
21 changes: 13 additions & 8 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,14 +27,6 @@ Bootstrapping is a widely applicable technique for statistical estimation.
- Bias-corrected and accelerated (BCa) (`BCaConfInt`)


## Package Status

Reports on package builds for all platforms and test coverage are collected on
the [package status page](status.md).

The package uses [semantic versioning](https://semver.org/).


## Installation

The `Bootstrap` package is part of the Julia ecosphere and the latest release
Expand Down Expand Up @@ -136,3 +128,16 @@ requests or issues if you have suggestions for changes, ideas or questions.
the term _bootstrapping_ is also used in different other contexts. You can check
wikipedia for a longer list of
[meanings associated with bootstrapping](https://en.wikipedia.org/wiki/Bootstrapping_(disambiguation)).


## Package Status

[![Documentation](https://img.shields.io/badge/docs-stable-blue.svg)](https://juliangehring.github.io/Bootstrap.jl/stable)

[![DOI](https://zenodo.org/badge/25918430.svg)](https://zenodo.org/badge/latestdoi/25918430)

![Testing](https://github.com/juliangehring/Bootstrap.jl/workflows/Testing/badge.svg)

[![Coverage](https://codecov.io/gh/juliangehring/Bootstrap.jl/branch/master/graph/badge.svg)](https://codecov.io/gh/juliangehring/Bootstrap.jl)

The package uses [semantic versioning](https://semver.org/).
4 changes: 2 additions & 2 deletions docs/src/references.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,12 +7,12 @@

* Davison, A. C.: [Bootstrap Methods and Their Application](http://statwww.epfl.ch/davison/BMA/). Cambridge University Press, 1997

* Efron, B.: [Bootstrap Methods: Another Look at the Jackknife](https://projecteuclid.org/euclid.aos/1176344552). The Annals of Statistics 7, no. 1 (January 1979): 1–26. [doi:10.1214/aos/1176344552](http://dx.doi.org/10.1214/aos/1176344552)
* Efron, B.: [Bootstrap Methods: Another Look at the Jackknife](https://projecteuclid.org/euclid.aos/1176344552). The Annals of Statistics 7, no. 1 (January 1979): 1–26. [doi:10.1214/aos/1176344552](https://dx.doi.org/10.1214/aos/1176344552)


# Algorithms

* Gleason, John R. [Algorithms for Balanced Bootstrap Simulations](http://www.jstor.org/stable/2685134). The American Statistician 42, no. 4 (November 1, 1988): 263–66. [doi:10.2307/2685134](http://dx.doi.org/10.2307/2685134)
* Gleason, John R. [Algorithms for Balanced Bootstrap Simulations](https://www.jstor.org/stable/2685134). The American Statistician 42, no. 4 (November 1, 1988): 263–66. [doi:10.2307/2685134](https://dx.doi.org/10.2307/2685134)


# Software
Expand Down
5 changes: 0 additions & 5 deletions status.md

This file was deleted.

0 comments on commit 27f0997

Please sign in to comment.