Skip to content

adapt plots

adapt plots #414

Workflow file for this run

name: "CI"
on: {push: {branches: ['**']}, pull_request: {branches: [dev, master]}}
jobs:
build:
name: Build on ${{ matrix.os.name }}
runs-on: ${{ matrix.os.image }}
strategy:
matrix:
os:
- {image: macos-latest, name: macOS}
- {image: ubuntu-latest, name: Linux}
- {image: windows-latest, name: Windows}
max-parallel: 4
fail-fast: false
steps:
- uses: "actions/checkout@main"
- uses: "actions/setup-python@main"
with:
python-version: 3
- name: "Install dependencies"
run: |
python -mpip install --progress-bar=off nox
python --version
pip --version
nox --version
- name: "Build"
run: "python -m nox"
env:
PLATFORM: ${{ matrix.os.image }}