Skip to content

Commit 10005a1

Browse files
committed
Add Project.toml
1 parent adbbb7e commit 10005a1

File tree

7 files changed

+85
-84
lines changed

7 files changed

+85
-84
lines changed

.github/workflows/TagBot.yml

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
name: TagBot
2+
on:
3+
schedule:
4+
- cron: 0 * * * *
5+
jobs:
6+
TagBot:
7+
runs-on: ubuntu-latest
8+
steps:
9+
- uses: JuliaRegistries/TagBot@v1
10+
with:
11+
token: ${{ secrets.GITHUB_TOKEN }}

.github/workflows/ci.yml

Lines changed: 54 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,54 @@
1+
name: CI
2+
on:
3+
push:
4+
branches:
5+
- master
6+
tags: '*'
7+
pull_request:
8+
jobs:
9+
test:
10+
name: Julia ${{ matrix.version }} - ${{ matrix.os }} - ${{ matrix.arch }}
11+
runs-on: ${{ matrix.os }}
12+
continue-on-error: ${{ matrix.version == 'nightly' }}
13+
strategy:
14+
matrix:
15+
version:
16+
- '1.0'
17+
- '1.1'
18+
- '1.2'
19+
- '1.3'
20+
- '1.4'
21+
- '1.5'
22+
- 'nightly'
23+
os:
24+
- ubuntu-latest
25+
- macOS-latest
26+
- windows-latest
27+
arch:
28+
- x86
29+
- x64
30+
exclude:
31+
# Remove some configurations from the build matrix to reduce CI time.
32+
# See https://github.com/marketplace/actions/setup-julia-environment
33+
# MacOS not available on x86
34+
- {os: 'macOS-latest', arch: 'x86'}
35+
# Don't test on all versions
36+
- {os: 'macOS-latest', version: '1.1'}
37+
- {os: 'macOS-latest', version: '1.2'}
38+
- {os: 'macOS-latest', version: '1.3'}
39+
- {os: 'macOS-latest', version: '1.4'}
40+
- {os: 'windows-latest', version: '1.1'}
41+
- {os: 'windows-latest', version: '1.2'}
42+
- {os: 'windows-latest', version: '1.3'}
43+
- {os: 'windows-latest', version: '1.4'}
44+
steps:
45+
- uses: actions/checkout@v1
46+
- uses: julia-actions/setup-julia@latest
47+
with:
48+
version: ${{ matrix.version }}
49+
arch: ${{ matrix.arch }}
50+
- uses: julia-actions/julia-buildpkg@latest
51+
- uses: julia-actions/julia-runtest@latest
52+
- uses: julia-actions/julia-uploadcodecov@latest
53+
env:
54+
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}

.travis.yml

Lines changed: 0 additions & 35 deletions
This file was deleted.

Project.toml

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
authors = ["Andy Ferris <[email protected]>"]
2+
name = "Indexing"
3+
uuid = "313cdc1a-70c2-5d6a-ae34-0150d3930a38"
4+
version = "1.1.1"
5+
6+
[deps]
7+
8+
[extras]
9+
Test = "8dfed614-e22c-5e08-85e1-65c5234f0b40"
10+
11+
[targets]
12+
test = ["Test"]
13+
14+
[compat]
15+
julia = "1"

README.md

Lines changed: 5 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,7 @@
22

33
*Generalized indexing for Julia*
44

5-
[![Build Status](https://travis-ci.org/andyferris/Indexing.jl.svg?branch=master)](https://travis-ci.org/andyferris/Indexing.jl)
6-
[![Build status](https://ci.appveyor.com/api/projects/status/1vm5k6cy4jitfns7?svg=true)](https://ci.appveyor.com/project/andyferris/indexing-jl)
7-
[![Coverage Status](https://coveralls.io/repos/andyferris/Indexing.jl/badge.svg?branch=master&service=github)](https://coveralls.io/github/andyferris/Indexing.jl?branch=master)
5+
[![Build Status](https://github.com/andyferris/Indexing.jl/workflows/CI/badge.svg)](https://github.com/andyferris/Indexing.jl/actions?query=workflow%3ACI)
86
[![codecov.io](http://codecov.io/github/andyferris/Indexing.jl/coverage.svg?branch=master)](http://codecov.io/github/andyferris/Indexing.jl?branch=master)
97

108
-----------
@@ -21,11 +19,12 @@ To acheive this, we introduce new functions and methods:
2119

2220
## Quick start
2321

24-
Please note that this package is still under development. However, you can check it out with
25-
Julia v0.6 or greater, and use it like so:
22+
You can install Indexing via Julia's package manager:
2623

2724
```
28-
julia> Pkg.clone("https://github.com/andyferris/Indexing.jl")
25+
julia> using Pkg
26+
27+
julia> Pkg.add("Indexing")
2928
3029
julia> using Indexing
3130

REQUIRE

Lines changed: 0 additions & 1 deletion
This file was deleted.

appveyor.yml

Lines changed: 0 additions & 42 deletions
This file was deleted.

0 commit comments

Comments
 (0)