mirror of
https://github.com/RYDE-WORK/ballistica.git
synced 2026-01-21 22:33:58 +08:00
20 lines
422 B
YAML
20 lines
422 B
YAML
name: CI
|
|
|
|
on: [push]
|
|
|
|
jobs:
|
|
check:
|
|
|
|
runs-on: ubuntu-18.04
|
|
|
|
steps:
|
|
- uses: actions/checkout@v1
|
|
- name: Set up tools
|
|
run: |
|
|
sudo apt-add-repository -y ppa:deadsnakes/ppa
|
|
sudo apt-get -y install python3.7 python3.7-dev python3-pip python3-setuptools
|
|
sudo python3.7 -m pip install pylint mypy typing-extensions pytz
|
|
- name: Run checks
|
|
run: make checkfull
|
|
|