Skip to content

Commit

Permalink
fix: Version 2.0.0 prepared
Browse files Browse the repository at this point in the history
  • Loading branch information
jagalindo committed Jul 27, 2024
2 parents 8128e2d + 360dfca commit d8f020d
Show file tree
Hide file tree
Showing 33 changed files with 2,082 additions and 849 deletions.
20 changes: 12 additions & 8 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,25 +6,29 @@ jobs:
prospector:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
- name: Set up Python 3.9
uses: actions/setup-python@v4
uses: actions/setup-python@v5
with:
python-version: 3.9
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install prospector[with_everything]==1.10.2
python -m venv venv
source venv/bin/activate
pip install setuptools prospector[with_everything]==1.10.3
pip install .
- name: Analysing the code with prospector
run: |
prospector -X
source venv/bin/activate
prospector
shell: bash
mypy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
- name: Set up Python 3.9
uses: actions/setup-python@v4
uses: actions/setup-python@v5
with:
python-version: 3.9
- name: Install dependencies
Expand All @@ -38,9 +42,9 @@ jobs:
pytest:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
- name: Set up Python 3.9
uses: actions/setup-python@v4
uses: actions/setup-python@v5
with:
python-version: 3.9
- name: Install dependencies
Expand Down
2 changes: 1 addition & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,5 @@
__pycache__
*.egg-info*
env

build
.vscode
11 changes: 7 additions & 4 deletions .prospector.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5,11 +5,14 @@ doc-warnings: false
ignore-paths:
- tests
- build
- resources
- .mypy_cache
- venv
- .venv
- env
- flamapy/metamodels/fm_metamodel/transformations/uvl_parser/UVLLexer.py
- flamapy/metamodels/fm_metamodel/transformations/uvl_parser/UVLListener.py
- flamapy/metamodels/fm_metamodel/transformations/uvl_parser/UVLParser.py

- flamapy_fm.egg-info
- __pycache__
- flamapy/metamodels/fm_metamodel/transformations/pysat_to_fm.py # This is a script that could will be only used in expert mode is not part of the package
pycodestyle:
options:
max-line-length: 100
Expand Down
Loading

0 comments on commit d8f020d

Please sign in to comment.