Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/master' into devel
Browse files Browse the repository at this point in the history
  • Loading branch information
Cloudac7 committed Apr 11, 2024
2 parents 8765354 + cfb790f commit 4862a61
Show file tree
Hide file tree
Showing 3 changed files with 48 additions and 1 deletion.
24 changes: 24 additions & 0 deletions .github/workflows/deploy_docs.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
name: deploy_docs
on:
push:
branches:
- 'master'
paths:
- docs/**
- README.md
- mkdocs.yml
- catflow/**
- .github/workflows/deploy_docs.yml
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-python@v2
with:
python-version: '3.10'
- uses: abatilo/[email protected]
with:
poetry-version: '1.3.0'
- run: poetry install --no-interaction --without test
- run: poetry run mkdocs gh-deploy --force
21 changes: 21 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
name: Build and publish python package

on:
release:
types: [ published ]

jobs:
publish-service-client-package:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ['3.8', '3.9', '3.10', '3.11']
steps:
- uses: actions/checkout@v2
- name: Build and publish to pypi
uses: JRubics/[email protected]
with:
python_version: ${{ matrix.python-version }}
poetry_version: "==1.3.0"
pypi_token: ${{ secrets.PYPI_API_TOKEN }}
plugins: "poetry-dynamic-versioning-plugin"
4 changes: 3 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
# CatFlow

> Parts of the code to be open source.
[![Python package](https://github.com/Cloudac7/CatFlow/actions/workflows/ci.yml/badge.svg)](https://github.com/Cloudac7/CatFlow/actions/workflows/ci.yml)
[![Coverage Status](https://coveralls.io/repos/github/Cloudac7/CatFlow/badge.svg?branch=master)](https://coveralls.io/github/Cloudac7/CatFlow?branch=master)

Expand All @@ -19,7 +21,7 @@ As is known to all, cat is fluid and thus cat flows. 🐱
To install, clone the repository:

```
git clone https://github.com/cloudac7/catflow.git
git clone https://github.com/chenggroup/catflow.git
```

and then install with `pip`:
Expand Down

0 comments on commit 4862a61

Please sign in to comment.