Skip to content

Commit e438aa3

Browse files
committed
Version 0.1 of the starting kit
1 parent 422d042 commit e438aa3

File tree

10 files changed

+8896
-7
lines changed

10 files changed

+8896
-7
lines changed

.github/workflows/main.yml

+29
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
name: Test ramp kit
2+
3+
on:
4+
push:
5+
branches: [ dev ]
6+
pull_request:
7+
branches: [ master ]
8+
9+
jobs:
10+
test:
11+
name: Test
12+
runs-on: ubuntu-latest
13+
steps:
14+
- uses: actions/checkout@master
15+
- name: Initialize Python 3.9
16+
uses: actions/setup-python@v1
17+
with:
18+
python-version: 3.9
19+
20+
- name: Install dependencies
21+
run: |
22+
python -m pip install --upgrade pip
23+
pip install -r requirements.txt
24+
25+
- name: Run ramp-test
26+
run: |
27+
ramp-test
28+
29+

.gitignore

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
__pycache__
2+
.ipynb_checkpoints
3+
data

README.md

-7
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,5 @@
1-
# bike-counters
2-
Bike counters RAMP starting kit
3-
41
# RAMP starting kit on the air passengers dataset
52

6-
7-
[!uild Status](https://travis-ci.org/ramp-kits/air_passengers.svg?branch=master)](https://travis-ci.org/ramp-kits/air_passengers)
8-
9-
103
## Getting started
114

125
### Install

0 commit comments

Comments
 (0)