Skip to content

Feature/user choice sample tensor #613

Feature/user choice sample tensor

Feature/user choice sample tensor #613

Workflow file for this run

name: SheepRL CPU tests
on:
push:
branches: [main, dev]
pull_request:
branches: [main, dev]
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}-${{ github.head_ref }}
cancel-in-progress: ${{ github.ref != 'refs/heads/main' }}
defaults:
run:
shell: bash
jobs:
cpu-tests:
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, windows-latest]
python-version: ["3.8", "3.9", "3.10"]
timeout-minutes: 20
steps:
- uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
cache: "pip"
cache-dependency-path: |
requirements.txt
setup.py
- name: Install packages
run: |
python -m pip install -U pip
python -m pip install swig
python -m pip install -e .[atari,box2d,test,dev]
- name: Run tests
run: |
python tests/run_tests.py