Files
PythonRobotics/.github/workflows/Linux_CI.yml
Atsushi Sakai cb796ddeff Add .circleci/config.yml (#359)
* Add .circleci/config.yml

* try doc build

* try doc build

* try doc build

* try doc build

* try doc build

* try doc build

* try doc build
2020-07-11 14:12:37 +09:00

60 lines
1.6 KiB
YAML

name: Linux_CI
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ['3.8']
name: Python ${{ matrix.python-version }} CI
steps:
- uses: actions/checkout@v2
- run: git fetch --prune --unshallow
- name: Setup python
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt
- name: install coverage
run: pip install coverage
- name: install mypy
run: pip install mypy
- name: install pycodestyle
run: pip install pycodestyle
- name: mypy check
run: |
find AerialNavigation -name "*.py" | xargs mypy
find ArmNavigation -name "*.py" | xargs mypy
find Bipedal -name "*.py" | xargs mypy
find InvertedPendulumCart -name "*.py" | xargs mypy
find Localization -name "*.py" | xargs mypy
find Mapping -name "*.py" | xargs mypy
find PathPlanning -name "*.py" | xargs mypy
find PathTracking -name "*.py" | xargs mypy
find SLAM -name "*.py" | xargs mypy
- name: do diff style check
run: bash rundiffstylecheck.sh
- name: run-circleci-artifacts-redirector
uses: larsoner/circleci-artifacts-redirector-action@0.2.0
with:
repo-token: ${{ secrets.GITHUB_TOKEN }}
artifact-path: 0/html/index.html
circleci-jobs: build_doc
- name: do all unit tests
run: bash runtests.sh
- name: Codecov
uses: codecov/codecov-action@v1.0.10