Skip to content

updating plots

updating plots #117

Workflow file for this run

name: cinema script test
on:
push:
jobs:
linux:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [3.9]
steps:
- uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Dependencies
run: |
pip install --upgrade pip
pip install .
- name: Test cinema script
run: |
cinema --version
cinema --help
macos:
strategy:
matrix:
python-version: [3.9]
os-version: [macos-11, macos-12]
runs-on: ${{ matrix.os-version }}
steps:
- uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Dependencies
run: |
pip install --upgrade pip
pip install .
- name: Test cinema script
run: |
cinema --version
cinema --help