Skip to content

Commit

Permalink
BUILD: Use organization level CI/CD
Browse files Browse the repository at this point in the history
  • Loading branch information
mehalter committed Jun 16, 2023
1 parent 8480caa commit 4d87a0d
Show file tree
Hide file tree
Showing 6 changed files with 56 additions and 79 deletions.
16 changes: 0 additions & 16 deletions .github/workflows/CompatHelper.yml

This file was deleted.

21 changes: 0 additions & 21 deletions .github/workflows/codecov.yml

This file was deleted.

17 changes: 0 additions & 17 deletions .github/workflows/docs.yml

This file was deleted.

50 changes: 50 additions & 0 deletions .github/workflows/julia_ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,50 @@
name: Julia CI/CD

on:
schedule:
- cron: 0 0 * * *
push:
branches: ["main"]
tags: ["*"]
pull_request:
workflow_dispatch:
inputs:
action:
description: "Action"
required: true
default: "test"
type: choice
options:
- test
- release
version:
description: "Tag and release version:"
required: false

permissions:
actions: read
checks: read
contents: write
deployments: read
discussions: read
issues: read
packages: read
pages: read
pull-requests: write
repository-projects: read
security-events: read
statuses: read

jobs:
CI:
if: github.event_name == 'pull_request' || github.event_name == 'push' || (github.event_name == 'workflow_dispatch' && inputs.action == 'test')
uses: AlgebraicJulia/.github/.github/workflows/julia_ci.yml@main
secrets: inherit
CompatHelper:
if: github.event_name == 'schedule'
uses: AlgebraicJulia/.github/.github/workflows/julia_compat.yml@main
secrets: inherit
Release:
if: github.event_name == 'workflow_dispatch' && inputs.action == 'release' && inputs.version != ''
uses: AlgebraicJulia/.github/.github/workflows/julia_release.yml@main
secrets: inherit
20 changes: 0 additions & 20 deletions .github/workflows/tests.yml

This file was deleted.

11 changes: 6 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,9 @@
# CombinatorialSpaces.jl

[![Build Status](https://github.com/AlgebraicJulia/CombinatorialSpaces.jl/workflows/Tests/badge.svg)](https://github.com/AlgebraicJulia/CombinatorialSpaces.jl/actions?query=workflow%3ATests)
[![Dev Docs](https://img.shields.io/badge/docs-dev-blue.svg)](https://algebraicjulia.github.io/CombinatorialSpaces.jl/dev)
[![Stable Documentation](https://img.shields.io/badge/docs-stable-blue.svg)](https://AlgebraicJulia.github.io/CombinatorialSpaces.jl/stable)
[![Development Documentation](https://img.shields.io/badge/docs-dev-blue.svg)](https://AlgebraicJulia.github.io/CombinatorialSpaces.jl/dev)
[![Code Coverage](https://codecov.io/gh/AlgebraicJulia/CombinatorialSpaces.jl/branch/main/graph/badge.svg)](https://codecov.io/gh/AlgebraicJulia/CombinatorialSpaces.jl)
[![CI/CD](https://github.com/AlgebraicJulia/CombinatorialSpaces.jl/actions/workflows/julia_ci.yml/badge.svg)](https://github.com/AlgebraicJulia/CombinatorialSpaces.jl/actions/workflows/julia_ci.yml)

This package provides combinatorial models of geometric spaces, such as
simplicial sets and combinatorial maps. These "combinatorial spaces" are useful
Expand All @@ -11,9 +12,9 @@ geometry plays a large role. They are also potentially useful in non-geometric
applications, since structures like simplicial sets generalize graphs from
binary relations to higher-arity relations.

Combinatorial spaces, like graphs, are typically *C*-sets (copresheaves) on some
category *C*. They are implemented here using the general data structures for
*C*-sets offered by [Catlab.jl](https://github.com/AlgebraicJulia/Catlab.jl).
Combinatorial spaces, like graphs, are typically _C_-sets (copresheaves) on some
category _C_. They are implemented here using the general data structures for
_C_-sets offered by [Catlab.jl](https://github.com/AlgebraicJulia/Catlab.jl).
Thus, this package complements and extends the family of graph data structures
shipped with Catlab in the module
[`Catlab.Graphs`](https://algebraicjulia.github.io/Catlab.jl/stable/apis/graphs/).
Expand Down

0 comments on commit 4d87a0d

Please sign in to comment.