Skip to content

Test extras

Test extras #27

Workflow file for this run

name: flake8
on:
# Trigger the workflow on push or pull request,
# but only for the main branch
push:
branches:
- main
pull_request:
branches:
- main
jobs:
flake8:
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 flake8
run: |
python -m pip install --upgrade pip
pip install flake8
- name: Validate
run: flake8 pynucastro