Skip to content

Added script to plot response surfaces #54

Added script to plot response surfaces

Added script to plot response surfaces #54

Workflow file for this run

# This is a basic workflow to help you get started with Actions
name: CI
# Controls when the action will run. Triggers the workflow on push for all branches and pull
# requests to main
on:
push:
branches: [ '**' ]
pull_request:
branches: [ main ]
# A workflow run is made up of one or more jobs that can run sequentially or in parallel
jobs:
# This workflow contains a single job called "build"
build:
# The type of runner that the job will run on
runs-on: ubuntu-latest
# Steps represent a sequence of tasks that will be executed as part of the job
steps:
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
- uses: actions/checkout@v4
- name: Set up Python 3.11
uses: actions/setup-python@v5
with:
python-version: 3.11
- name: Install dependencies
run: |
pip install .
pip install -r requirements.txt
- name: Check code is correctly formatted
run: make check_format
- name: Check code passes the static checks
run: make static_checks
- name: Run tests
run: make test