Skip to content

Commit

Permalink
Add Project.toml
Browse files Browse the repository at this point in the history
  • Loading branch information
andyferris committed Mar 3, 2021
1 parent adbbb7e commit 10005a1
Show file tree
Hide file tree
Showing 7 changed files with 85 additions and 84 deletions.
11 changes: 11 additions & 0 deletions .github/workflows/TagBot.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
name: TagBot
on:
schedule:
- cron: 0 * * * *
jobs:
TagBot:
runs-on: ubuntu-latest
steps:
- uses: JuliaRegistries/TagBot@v1
with:
token: ${{ secrets.GITHUB_TOKEN }}
54 changes: 54 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,54 @@
name: CI
on:
push:
branches:
- master
tags: '*'
pull_request:
jobs:
test:
name: Julia ${{ matrix.version }} - ${{ matrix.os }} - ${{ matrix.arch }}
runs-on: ${{ matrix.os }}
continue-on-error: ${{ matrix.version == 'nightly' }}
strategy:
matrix:
version:
- '1.0'
- '1.1'
- '1.2'
- '1.3'
- '1.4'
- '1.5'
- 'nightly'
os:
- ubuntu-latest
- macOS-latest
- windows-latest
arch:
- x86
- x64
exclude:
# Remove some configurations from the build matrix to reduce CI time.
# See https://github.com/marketplace/actions/setup-julia-environment
# MacOS not available on x86
- {os: 'macOS-latest', arch: 'x86'}
# Don't test on all versions
- {os: 'macOS-latest', version: '1.1'}
- {os: 'macOS-latest', version: '1.2'}
- {os: 'macOS-latest', version: '1.3'}
- {os: 'macOS-latest', version: '1.4'}
- {os: 'windows-latest', version: '1.1'}
- {os: 'windows-latest', version: '1.2'}
- {os: 'windows-latest', version: '1.3'}
- {os: 'windows-latest', version: '1.4'}
steps:
- uses: actions/checkout@v1
- uses: julia-actions/setup-julia@latest
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 }}
35 changes: 0 additions & 35 deletions .travis.yml

This file was deleted.

15 changes: 15 additions & 0 deletions Project.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
authors = ["Andy Ferris <[email protected]>"]
name = "Indexing"
uuid = "313cdc1a-70c2-5d6a-ae34-0150d3930a38"
version = "1.1.1"

[deps]

[extras]
Test = "8dfed614-e22c-5e08-85e1-65c5234f0b40"

[targets]
test = ["Test"]

[compat]
julia = "1"
11 changes: 5 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,7 @@

*Generalized indexing for Julia*

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

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

## Quick start

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

```
julia> Pkg.clone("https://github.com/andyferris/Indexing.jl")
julia> using Pkg
julia> Pkg.add("Indexing")
julia> using Indexing
Expand Down
1 change: 0 additions & 1 deletion REQUIRE

This file was deleted.

42 changes: 0 additions & 42 deletions appveyor.yml

This file was deleted.

2 comments on commit 10005a1

@andyferris
Copy link
Owner Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@JuliaRegistrator
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Registration pull request created: JuliaRegistries/General/31198

After the above pull request is merged, it is recommended that a tag is created on this repository for the registered package version.

This will be done automatically if the Julia TagBot GitHub Action is installed, or can be done manually through the github interface, or via:

git tag -a v1.1.1 -m "<description of version>" 10005a1bb9e02e06699fc16cf57adc0bf0b74065
git push origin v1.1.1

Please sign in to comment.