Update ngsPETSc test due to change in KrylovSolver public interface #1046
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: CI | |
on: | |
push: | |
branches: | |
- "**" | |
pull_request: | |
branches: | |
- main | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Install dependencies | |
run: python3 -m pip -q install --upgrade nbqa ruff yamllint | |
- name: Run ruff on python files | |
run: | | |
python3 -m ruff . | |
- name: Run ruff on notebooks test files | |
run: | | |
python3 -m nbqa ruff . | |
- name: Run yamllint | |
run: | | |
python3 -m yamllint -d "{extends: default, rules: {document-start: {present: false}, line-length: disable, truthy: {check-keys: false}}}" . | |
- name: Check for stray outputs, counts and metadata in ipynb files | |
uses: RBniCS/check-jupyter-metadata-action@main | |
with: | |
pattern: "**/*.ipynb" |