Update wording #107
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Test | |
on: [push] | |
permissions: | |
contents: read | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }} | |
cancel-in-progress: true | |
jobs: | |
build_and_test: | |
strategy: | |
fail-fast: false | |
matrix: | |
os: | |
- "ubuntu-latest" | |
python: | |
- "3.7" | |
- "3.8" | |
- "3.9" | |
- "3.10" | |
runs-on: ubuntu-22.04 | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
submodules: true | |
- name: Set up Python ${{ matrix.python }} | |
uses: actions/setup-python@v4 | |
with: | |
python-version: ${{ matrix.python }} | |
- name: Update deb repository | |
run: sudo apt-get update | |
- name: Install deb dependencies | |
run: sudo apt-get install -y xorg-dev libglu1-mesa-dev libglew-dev xvfb | |
- name: Install python dependencies | |
run: pip install -r requirements-dev.txt | |
- name: Cache python wheel packages | |
uses: actions/cache@v3 | |
with: | |
path: ~/.cache/pip | |
key: wheel-cache-${{ hashFiles('requirements-dev.txt') }} | |
- name: Install evolution gym | |
run: pip install -e . | |
- name: Run test | |
run: xvfb-run python -m pytest -s -v -n auto -m lite | |
working-directory: tests |