Skip to content

Test extras

Test extras #21

Workflow file for this run

name: pylint
on:
# Trigger the workflow on push or pull request,
# but only for the main branch
push:
branches:
- main
pull_request:
branches:
- main
jobs:
pylint:
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 dependencies and pynucastro
run: |
python -m pip install --upgrade pip
pip install .[ci]
- name: Validate
run: pylint pynucastro pynucastro/**/tests