Skip to content

POEM_096 Research and Pseudocode #359

POEM_096 Research and Pseudocode

POEM_096 Research and Pseudocode #359

Workflow file for this run

# This workflow updates the table of OpenMDAO POEMs in the README.md with each push
name: POEM Linter
# Controls when the action will run. Triggers the workflow on push or pull request
# events but only for the master branch
on:
# Trigger the workflow on pull request,
# but only for the master branch
pull_request:
branches:
- master
# A workflow run is made up of one or more jobs that can run sequentially or in parallel
jobs:
build:
runs-on: ubuntu-latest
steps:
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
- uses: actions/checkout@v3
- uses: actions/setup-python@v4
with:
python-version: 3.8
- name: Run script
run: python ./.github/scripts/linter.py