mirror of
https://github.com/AtsushiSakai/PythonRobotics.git
synced 2026-01-10 21:48:12 -05:00
* Update Python version to 3.13 across the project Upgraded the required Python version to 3.13 in configurations, CI workflows, documentation, and environment files. This ensures compatibility with the latest Python release and maintains consistency across all project components. * Update Python version to 3.13 across the project Upgraded the required Python version to 3.13 in configurations, CI workflows, documentation, and environment files. This ensures compatibility with the latest Python release and maintains consistency across all project components.
38 lines
682 B
YAML
38 lines
682 B
YAML
name: Linux_CI
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- master
|
|
pull_request:
|
|
|
|
jobs:
|
|
build:
|
|
|
|
runs-on: ubuntu-latest
|
|
strategy:
|
|
matrix:
|
|
python-version: [ '3.13' ]
|
|
|
|
name: Python ${{ matrix.python-version }} CI
|
|
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
- run: git fetch --prune --unshallow
|
|
|
|
- name: Setup python
|
|
uses: actions/setup-python@v5
|
|
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
|
|
|
|
|
|
|
|
|