Skip to content

Add more unit tests (#694) #28

Add more unit tests (#694)

Add more unit tests (#694) #28

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
workflow_dispatch:
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'
- name: Cache pip
uses: actions/cache@v3
with:
# this path is specific to Ubuntu
path: ~/.cache/pip
key: ${{ runner.os }}-pip-${{ hashFiles('**/requirements.txt') }}
restore-keys: |
${{ runner.os }}-pip-
- name: Install dependencies + pylint
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt
pip install pylint
- name: Install pynucastro
run: pip install .
- name: Validate
run: pylint pynucastro pynucastro/**/tests