Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Convert to ewc-plugin structure. Add forcing generation #7

Merged
merged 10 commits into from
Nov 1, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
21 changes: 0 additions & 21 deletions .bumpversion.cfg

This file was deleted.

26 changes: 0 additions & 26 deletions .editorconfig

This file was deleted.

31 changes: 0 additions & 31 deletions .githooks/pre-commit

This file was deleted.

77 changes: 0 additions & 77 deletions .github/workflows/build.yml

This file was deleted.

21 changes: 0 additions & 21 deletions .github/workflows/cffconvert.yml

This file was deleted.

36 changes: 0 additions & 36 deletions .github/workflows/documentation.yml

This file was deleted.

31 changes: 31 additions & 0 deletions .github/workflows/lint.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
name: Python package

on:
push:
branches: [main]
pull_request:
types: [opened, synchronize, reopened]

jobs:
lint:
name: Linting build
runs-on: ubuntu-latest
strategy:
fail-fast: false
steps:
- uses: actions/checkout@v3
- name: Set up Python 3.10
uses: actions/setup-python@v3
with:
python-version: "3.10"
- name: Python info
shell: bash -l {0}
run: |
which python3
python3 --version
- name: Upgrade pip and install ruff
run: python3 -m pip install --upgrade pip ruff
- name: Check code formatting against standards
run: ruff format . --check
- name: Check style against standards
run: ruff check .
20 changes: 0 additions & 20 deletions .github/workflows/markdown-link-check.yml

This file was deleted.

42 changes: 0 additions & 42 deletions .github/workflows/sonarcloud.yml

This file was deleted.

Loading