Skip to content

kubernetes training on optocycle cluster #144

kubernetes training on optocycle cluster

kubernetes training on optocycle cluster #144

Workflow file for this run

name: Format
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@master
- name: Set up Python
uses: actions/setup-python@v3
with:
python-version: "3.10"
- name: Install dependencies
run: |
python -m pip install -r requirements.txt
- name: Check for format issues
run: |
black --check swr2_asr
- name: Run pylint
run: |
pylint --fail-under=9 swr2_asr