mirror of
https://github.com/AtsushiSakai/PythonRobotics.git
synced 2026-01-14 05:47:58 -05:00
37 lines
641 B
YAML
37 lines
641 B
YAML
name: Linux_CI
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- master
|
|
pull_request:
|
|
|
|
jobs:
|
|
build:
|
|
|
|
runs-on: ubuntu-latest
|
|
strategy:
|
|
matrix:
|
|
python-version: ['3.9']
|
|
|
|
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
|
|
python -m pip install -r requirements.txt
|
|
- name: do all unit tests
|
|
run: bash runtests.sh
|
|
|
|
|
|
|
|
|