Skip to content

Commit

Permalink
Deleted ci.yaml and added static-analysis.yml github workflow. So…
Browse files Browse the repository at this point in the history
… that it is consistent with the meldingen repo.
  • Loading branch information
vanbuiten committed Jan 31, 2024
1 parent 212b086 commit c4bc163
Show file tree
Hide file tree
Showing 2 changed files with 97 additions and 32 deletions.
32 changes: 0 additions & 32 deletions .github/workflows/ci.yaml

This file was deleted.

97 changes: 97 additions & 0 deletions .github/workflows/static-analysis.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,97 @@
name: Static analysis

on: [ pull_request ]

jobs:
Black:
runs-on: ubuntu-latest

steps:
# https://github.com/actions/checkout
- uses: actions/checkout@v4

- uses: actions/setup-python@v5
with:
python-version: '3.12'

- name: Install poetry
uses: abatilo/actions-poetry@v2

- name: Setup a local virtual environment (if no poetry.toml file)
run: |
poetry config virtualenvs.create true --local
poetry config virtualenvs.in-project true --local
- uses: actions/cache@v4
name: Define a cache for the virtual environment based on the dependencies lock file
with:
path: ./.venv
key: venv-${{ hashFiles('poetry.lock') }}

- name: Install the project dependencies
run: poetry install

- name: black
run: poetry run black . --check

iSort:
runs-on: ubuntu-latest

steps:
# https://github.com/actions/checkout
- uses: actions/checkout@v4

- uses: actions/setup-python@v5
with:
python-version: '3.12'

- name: Install poetry
uses: abatilo/actions-poetry@v2

- name: Setup a local virtual environment (if no poetry.toml file)
run: |
poetry config virtualenvs.create true --local
poetry config virtualenvs.in-project true --local
- uses: actions/cache@v4
name: Define a cache for the virtual environment based on the dependencies lock file
with:
path: ./.venv
key: venv-${{ hashFiles('poetry.lock') }}

- name: Install the project dependencies
run: poetry install

- name: isort
run: poetry run isort .

MyPy:
runs-on: ubuntu-latest

steps:
# https://github.com/actions/checkout
- uses: actions/checkout@v4

- uses: actions/setup-python@v5
with:
python-version: '3.12'

- name: Install poetry
uses: abatilo/actions-poetry@v2

- name: Setup a local virtual environment (if no poetry.toml file)
run: |
poetry config virtualenvs.create true --local
poetry config virtualenvs.in-project true --local
- uses: actions/cache@v4
name: Define a cache for the virtual environment based on the dependencies lock file
with:
path: ./.venv
key: venv-${{ hashFiles('poetry.lock') }}

- name: Install the project dependencies
run: poetry install

- name: mypy
run: poetry run mypy --strict .

0 comments on commit c4bc163

Please sign in to comment.