๐Ÿ“ฆ encode / apistar

๐Ÿ“„ .travis.yml ยท 22 lines
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22sudo: required
dist: xenial
language: python

cache: pip

python:
    - "3.6"
    - "3.7"
    - "3.8"
    - "3.9"

install:
    - pip install -U -r requirements.txt

script:
    - scripts/lint
    - scripts/test

after_script:
    - codecov