Skip to content

Add first pass CI and small unit test #12

Add first pass CI and small unit test

Add first pass CI and small unit test #12

Workflow file for this run

# Copyright [2023] Boston Dynamics AI Institute, Inc.
name: ZSOS - Main Build
on:
push:
branches: [ main ]
pull_request:
jobs:
build:
runs-on: ${{ matrix.os }}
group: bdai-gh-large-runners

Check failure on line 13 in .github/workflows/test.yml

View workflow run for this annotation

GitHub Actions / ZSOS - Main Build

Invalid workflow file

The workflow is not valid. .github/workflows/test.yml (Line: 13, Col: 5): Unexpected value 'group'
strategy:
fail-fast: false
matrix:
python-version: ['3.9.16']
os: [ubuntu-latest]
steps:
- uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Install package
run: |
sudo apt-get install -y libgl1-mesa-dev
pip install -e .[dev]
- name: Pytest
run: |
pytest test