Skip to content

Commit

Permalink
Merge pull request #51 from MineralsCloud:rename
Browse files Browse the repository at this point in the history
Rename package from `SimpleWorkflow.jl` to `SimpleWorkflows.jl`
  • Loading branch information
singularitti authored Jul 20, 2021
2 parents 04a441d + e3a1064 commit 8a9b6f4
Show file tree
Hide file tree
Showing 10 changed files with 27 additions and 36 deletions.
3 changes: 2 additions & 1 deletion .cirrus.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ task:
folder: ~/.julia/artifacts
env:
JULIA_VERSION: 1.0
JULIA_VERSION: 1.2
JULIA_VERSION: 1.5
JULIA_VERSION: nightly
install_script:
Expand All @@ -15,4 +16,4 @@ task:
test_script:
- cirrusjl test
coverage_script:
- cirrusjl coverage codecov coveralls
- cirrusjl coverage codecov
6 changes: 3 additions & 3 deletions .github/workflows/CI.yml
Original file line number Diff line number Diff line change
Expand Up @@ -62,9 +62,9 @@ jobs:
- run: |
julia --project=docs -e '
using Documenter: DocMeta, doctest
using SimpleWorkflow
DocMeta.setdocmeta!(SimpleWorkflow, :DocTestSetup, :(using SimpleWorkflow); recursive=true)
doctest(SimpleWorkflow)'
using SimpleWorkflows
DocMeta.setdocmeta!(SimpleWorkflows, :DocTestSetup, :(using SimpleWorkflows); recursive=true)
doctest(SimpleWorkflows)'
- run: julia --project=docs docs/make.jl
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
Expand Down
7 changes: 0 additions & 7 deletions .github/workflows/dependabot.yml

This file was deleted.

2 changes: 1 addition & 1 deletion Project.toml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name = "SimpleWorkflow"
name = "SimpleWorkflows"
uuid = "6a97d125-85da-4b66-b300-4bba10360563"
authors = ["Qi Zhang <[email protected]>"]
version = "0.2.0"
Expand Down
17 changes: 7 additions & 10 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,11 +1,8 @@
# SimpleWorkflow
# SimpleWorkflows

[![Stable](https://img.shields.io/badge/docs-stable-blue.svg)](https://MineralsCloud.github.io/SimpleWorkflow.jl/stable)
[![Dev](https://img.shields.io/badge/docs-dev-blue.svg)](https://MineralsCloud.github.io/SimpleWorkflow.jl/dev)
[![Build Status](https://github.com/MineralsCloud/SimpleWorkflow.jl/workflows/CI/badge.svg)](https://github.com/MineralsCloud/SimpleWorkflow.jl/actions)
[![Build Status](https://ci.appveyor.com/api/projects/status/github/MineralsCloud/SimpleWorkflow.jl?svg=true)](https://ci.appveyor.com/project/singularitti/SimpleWorkflow-jl)
[![Build Status](https://cloud.drone.io/api/badges/MineralsCloud/SimpleWorkflow.jl/status.svg)](https://cloud.drone.io/MineralsCloud/SimpleWorkflow.jl)
[![pipeline status](https://gitlab.com/singularitti/SimpleWorkflow.jl/badges/master/pipeline.svg)](https://gitlab.com/singularitti/SimpleWorkflow.jl/-/pipelines)
[![Build Status](https://api.cirrus-ci.com/github/MineralsCloud/SimpleWorkflow.jl.svg)](https://cirrus-ci.com/github/MineralsCloud/SimpleWorkflow.jl)
[![Coverage](https://codecov.io/gh/MineralsCloud/SimpleWorkflow.jl/branch/master/graph/badge.svg)](https://codecov.io/gh/MineralsCloud/SimpleWorkflow.jl)
[![Open in Visual Studio Code](https://open.vscode.dev/badges/open-in-vscode.svg)](https://open.vscode.dev/organization/repository)
[![Stable](https://img.shields.io/badge/docs-stable-blue.svg)](https://MineralsCloud.github.io/SimpleWorkflows.jl/stable)
[![Dev](https://img.shields.io/badge/docs-dev-blue.svg)](https://MineralsCloud.github.io/SimpleWorkflows.jl/dev)
[![Build Status](https://ci.appveyor.com/api/projects/status/github/MineralsCloud/SimpleWorkflows.jl?svg=true)](https://ci.appveyor.com/project/singularitti/SimpleWorkflows-jl)
[![Build Status](https://cloud.drone.io/api/badges/MineralsCloud/SimpleWorkflows.jl/status.svg)](https://cloud.drone.io/MineralsCloud/SimpleWorkflows.jl)
[![Build Status](https://api.cirrus-ci.com/github/MineralsCloud/SimpleWorkflows.jl.svg)](https://cirrus-ci.com/github/MineralsCloud/SimpleWorkflows.jl)
[![Coverage](https://codecov.io/gh/MineralsCloud/SimpleWorkflows.jl/branch/master/graph/badge.svg)](https://codecov.io/gh/MineralsCloud/SimpleWorkflows.jl)
14 changes: 7 additions & 7 deletions docs/make.jl
Original file line number Diff line number Diff line change
@@ -1,16 +1,16 @@
using SimpleWorkflow
using SimpleWorkflows
using Documenter

DocMeta.setdocmeta!(SimpleWorkflow, :DocTestSetup, :(using SimpleWorkflow); recursive=true)
DocMeta.setdocmeta!(SimpleWorkflows, :DocTestSetup, :(using SimpleWorkflows); recursive=true)

makedocs(;
modules=[SimpleWorkflow],
modules=[SimpleWorkflows],
authors="Qi Zhang <[email protected]>",
repo="https://github.com/MineralsCloud/SimpleWorkflow.jl/blob/{commit}{path}#{line}",
sitename="SimpleWorkflow.jl",
repo="https://github.com/MineralsCloud/SimpleWorkflows.jl/blob/{commit}{path}#{line}",
sitename="SimpleWorkflows.jl",
format=Documenter.HTML(;
prettyurls=get(ENV, "CI", "false") == "true",
canonical="https://MineralsCloud.github.io/SimpleWorkflow.jl",
canonical="https://MineralsCloud.github.io/SimpleWorkflows.jl",
assets=String[],
),
pages=[
Expand All @@ -19,5 +19,5 @@ makedocs(;
)

deploydocs(;
repo="github.com/MineralsCloud/SimpleWorkflow.jl",
repo="github.com/MineralsCloud/SimpleWorkflows.jl",
)
8 changes: 4 additions & 4 deletions docs/src/index.md
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
```@meta
CurrentModule = SimpleWorkflow
CurrentModule = SimpleWorkflows
```

# SimpleWorkflow
# SimpleWorkflows

Documentation for [SimpleWorkflow](https://github.com/MineralsCloud/SimpleWorkflow.jl).
Documentation for [SimpleWorkflows](https://github.com/MineralsCloud/SimpleWorkflows.jl).

```@index
```

```@autodocs
Modules = [SimpleWorkflow]
Modules = [SimpleWorkflows]
```
2 changes: 1 addition & 1 deletion src/SimpleWorkflow.jl → src/SimpleWorkflows.jl
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
module SimpleWorkflow
module SimpleWorkflows

include("jobs.jl")
include("graph.jl")
Expand Down
2 changes: 1 addition & 1 deletion test/runtests.jl
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
using SimpleWorkflow
using SimpleWorkflows
using Test

@testset "SimpleWorkflow.jl" begin
Expand Down
2 changes: 1 addition & 1 deletion test/workflow.jl
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
using SimpleWorkflow
using SimpleWorkflows

j = AtomicJob(`ls`)
k = AtomicJob(() -> sleep(5))
Expand Down

0 comments on commit 8a9b6f4

Please sign in to comment.