Skip to content

Commit 4bd2844

Browse files
committed
chore: add Circle
1 parent 20e320b commit 4bd2844

File tree

2 files changed

+31
-1
lines changed

2 files changed

+31
-1
lines changed

.circleci/config.yml

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
version: 2.1
2+
3+
jobs:
4+
test:
5+
docker:
6+
- image: cimg/python:3.6.15
7+
steps:
8+
- checkout
9+
- run:
10+
name: Install deps
11+
command: poetry install
12+
# - run:
13+
# name: Clone data
14+
# command: poetry run ditto clone --dest-dir ./data
15+
# - run:
16+
# name: Analyze
17+
# command: poetry run ditto analyze --data-dir ./data
18+
# - run:
19+
# name: Transform
20+
# command: |
21+
# poetry run ditto transform \
22+
# --base-url='https://pokeapi.co' \
23+
# --src-dir=./data \
24+
# --dest-dir=./_gen
25+
26+
workflows:
27+
version: 2
28+
test:
29+
jobs:
30+
- test

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.poetry]
22
name = "pokeapi-ditto"
3-
version = "1.0.0"
3+
version = "1.0.1"
44
description = "Ditto is a command line tool for performing meta operations over PokéAPI data."
55
license = "Apache-2.0"
66
authors = ["Sargun Vohra <[email protected]>"]

0 commit comments

Comments
 (0)