Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add CI as cron job on GitHub Actions #139

Open
wants to merge 10 commits into
base: develop
Choose a base branch
from
11 changes: 7 additions & 4 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,10 @@ on:
pull_request:
push:
branches:
- master
- main
schedule:
# run Tuesday at noon UTC
- cron: '0 13 * * 2'

jobs:
base:
Expand All @@ -19,7 +22,7 @@ jobs:
path: ~/Library/Caches/pip
- os: windows-latest
path: ~\AppData\Local\pip\Cache
python-version: [3.6, 3.9]
python-version: ['3.7', '3.10']
runs-on: ${{ matrix.os }}

steps:
Expand Down Expand Up @@ -53,7 +56,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [3.9]
python-version: ['3.10']

steps:
- name: Check out repository
Expand Down Expand Up @@ -81,7 +84,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [3.9]
python-version: ['3.10']

steps:
- name: Check out repository
Expand Down
5 changes: 5 additions & 0 deletions doc/release_notes.rst
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,11 @@ Release Notes
0.2 series
..........

0.2.5 (2021-07-30)
------------------
* remove unit assignment `dimensionless` from SBML creation. (#136)
* remove checks for consistency of units. (#135)

0.2.4 (2021-05-28)
------------------

Expand Down
2 changes: 1 addition & 1 deletion yaml2sbml/version.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
"""yaml2sbml version."""

__version__ = '0.2.4'
__version__ = '0.2.5'