mirror of
https://github.com/davidhalter/typeshed.git
synced 2026-01-22 19:13:34 +08:00
21 lines
708 B
YAML
21 lines
708 B
YAML
dist: bionic
|
|
language: python
|
|
python: 3.8
|
|
|
|
jobs:
|
|
include:
|
|
- name: "mypy (typed-ast)"
|
|
python: 3.7
|
|
install: pip install -U git+git://github.com/python/mypy git+git://github.com/python/typed_ast
|
|
script: ./tests/mypy_test.py --platform=linux
|
|
- name: "mypy (ast)"
|
|
python: 3.8
|
|
install: pip install -U git+git://github.com/python/mypy
|
|
script: ./tests/mypy_test.py --platform=linux
|
|
- name: "mypy (Windows)"
|
|
install: pip install -U git+git://github.com/python/mypy
|
|
script: ./tests/mypy_test.py --platform=win32
|
|
- name: "mypy (Darwin)"
|
|
install: pip install -U git+git://github.com/python/mypy
|
|
script: ./tests/mypy_test.py --platform=darwin
|