23 lines
318 B
YAML
23 lines
318 B
YAML
sudo: required
|
|
dist: bionic
|
|
language: generic
|
|
compiler:
|
|
- clang
|
|
- gcc
|
|
cache: pip
|
|
python: 3
|
|
|
|
addons:
|
|
apt:
|
|
packages:
|
|
- python3
|
|
- python3-virtualenv
|
|
|
|
install:
|
|
- make env3
|
|
|
|
script:
|
|
- env3/bin/black --check --skip-string-normalization tools/
|
|
- env3/bin/python tools/solotool.py -h
|
|
- make test
|