Skip to content

Test extras

Test extras #12

Workflow file for this run

name: isort
on:
# Trigger the workflow on push or pull request,
# but only for the main branch
push:
branches:
- main
pull_request:
branches:
- main
jobs:
isort:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Install Python 3.10
uses: actions/setup-python@v4
with:
python-version: '3.10'
cache: 'pip'
cache-dependency-path: 'pyproject.toml'
- name: Install isort
run: |
python -m pip install --upgrade pip
pip install isort
- name: Validate
run: isort --check --diff pynucastro