Files
PythonRobotics/.github/workflows/Linux_CI.yml
Atsushi Sakai b9345da036 try to use python3.10 (#561)
* try to use python3.10

* try python3.10

* try python3.10
2022-05-07 16:04:39 +09:00

38 lines
680 B
YAML

name: Linux_CI
on:
push:
branches:
- master
pull_request:
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ['3.10']
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 --version
python -m pip install --upgrade pip
python -m pip install -r requirements/requirements.txt
- name: do all unit tests
run: bash runtests.sh