Skip to content

Commit ec18021

Browse files
committed
Resurrect CI pipeline with github actions, update classifiers accordingly
1 parent 90f2386 commit ec18021

File tree

4 files changed

+37
-34
lines changed

4 files changed

+37
-34
lines changed

.github/workflows/CI.yml

Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
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 }}

.travis.yml

Lines changed: 0 additions & 30 deletions
This file was deleted.

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
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

setup.cfg

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,10 +9,11 @@ long_description_content_type = text/markdown
99
license = MIT License
1010
license_file = LICENSE
1111
classifiers =
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

0 commit comments

Comments
 (0)