File tree Expand file tree Collapse file tree 4 files changed +37
-34
lines changed
Expand file tree Collapse file tree 4 files changed +37
-34
lines changed Original file line number Diff line number Diff line change 1+ name : CI
2+
3+ on :
4+ - push
5+ - pull_request
6+
7+ jobs :
8+ # See: https://docs.github.com/en/actions/writing-workflows/workflow-syntax-for-github-actions#example-running-a-job-within-a-container
9+ continuous-integration :
10+ runs-on : ubuntu-latest
11+ strategy :
12+ matrix :
13+ python-version : ["3.9", "3.10", "3.11", "3.12"]
14+
15+ steps :
16+ - name : Checkout
17+ uses : actions/checkout@v4
18+ - name : Set up Python ${{ matrix.python-version }}
19+ uses : actions/setup-python@v5
20+ with :
21+ python-version : ${{ matrix.python-version }}
22+ - name : Install
23+ run : |
24+ python -m pip install --upgrade pip
25+ make install
26+ - name : Test
27+ run : |
28+ make tests
29+ - name : Upload coverage reports to Codecov
30+ uses : codecov/codecov-action@v5
31+ env :
32+ CODECOV_TOKEN : ${{ secrets.CODECOV_TOKEN }}
Load Diff This file was deleted.
Original file line number Diff line number Diff line change 1- [ ![ arXiv] ( http://img.shields.io/badge/astro.ph-2004.03701-B31B1B.svg )] ( https://arxiv.org/abs/2004.03701 ) ![ License] ( https://img.shields.io/badge/License-MIT-green.svg ) ![ Python versions] ( https://img.shields.io/pypi/pyversions/riptide-ffa.svg ) [ ![ Build Status ] ( https://travis-ci .com/v-morello/riptide. svg?branch=master )] ( https://travis-ci.com/v-morello/riptide ) [ ![ codecov] ( https://codecov.io/gh/v-morello/riptide/branch/master/graph/badge.svg )] ( https://codecov.io/gh/v-morello/riptide )
1+ [ ![ arXiv] ( http://img.shields.io/badge/astro.ph-2004.03701-B31B1B.svg )] ( https://arxiv.org/abs/2004.03701 ) ![ License] ( https://img.shields.io/badge/License-MIT-green.svg ) ![ Python versions] ( https://img.shields.io/pypi/pyversions/riptide-ffa.svg ) ![ CI status ] ( https://github .com/v-morello/riptide/actions/workflows/CI.yml/badge. svg?branch=master ) [ ![ codecov] ( https://codecov.io/gh/v-morello/riptide/branch/master/graph/badge.svg )] ( https://codecov.io/gh/v-morello/riptide )
22
33# riptide
44
Original file line number Diff line number Diff line change @@ -9,10 +9,11 @@ long_description_content_type = text/markdown
99license = MIT License
1010license_file = LICENSE
1111classifiers =
12- Programming Language :: Python :: 3.6
13- Programming Language :: Python :: 3.7
14- Programming Language :: Python :: 3.8
12+ Programming Language :: Python :: 3 :: Only
1513 Programming Language :: Python :: 3.9
14+ Programming Language :: Python :: 3.10
15+ Programming Language :: Python :: 3.11
16+ Programming Language :: Python :: 3.12
1617 Programming Language :: C
1718 License :: OSI Approved :: MIT License
1819 Operating System :: Unix
You can’t perform that action at this time.
0 commit comments