Skip to content

Trying to fix my failing pymc-related unit tests by adding a pytensor… #254

Trying to fix my failing pymc-related unit tests by adding a pytensor…

Trying to fix my failing pymc-related unit tests by adding a pytensor… #254

Workflow file for this run

name: test
on: [push, pull_request]
jobs:
test:
name: Run unit tests
runs-on: ubuntu-latest
env:
PYTENSOR_FLAGS: floatX=float64,gcc__cxxflags='-march=native'

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

View workflow run for this annotation

GitHub Actions / .github/workflows/test.yml

Invalid workflow file

You have an error in your yaml syntax on line 8
timeout-minutes: 15
strategy:
matrix:
python-version: ['3.11']
steps:
- uses: actions/checkout@v2
- name: Setup Python
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- name: Install Python dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt
pip install -r requirements-dev.txt
- name: Run Python Tests
run: tox -e py