Skip to content

release: bump up 4.2.0 to 5.0.0 #187

release: bump up 4.2.0 to 5.0.0

release: bump up 4.2.0 to 5.0.0 #187

Workflow file for this run

name: CI
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
style:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [3.7, 3.8, 3.9, "3.10", 3.11]
steps:
- uses: actions/checkout@v2
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install -U pip black isort
pip install -r requirements.txt
- name: Checking style
run: |
black ./neispy --check
isort ./neispy --profile=black --check
type:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [3.7, 3.8, 3.9, "3.10", 3.11]
steps:
- uses: actions/checkout@v2
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- name: Install Dependencies
run: |
python -m pip install -U pip
pip install mypy
pip install -r requirements.txt
- name: Mypy cheking
run: mypy ./neispy --strict --enable-incomplete-feature=Unpack
# test:
# runs-on: ubuntu-latest
# strategy:
# matrix:
# python-version: [3.7, 3.8, 3.9, 3.10, 3.11]
# steps:
# - uses: actions/checkout@v2
# - name: Set up Python ${{ matrix.python-version }}
# uses: actions/setup-python@v2
# with:
# python-version: ${{ matrix.python-version }}
# - name: Install dependencies
# run: |
# python -m pip install -U pip
# pip install -r requirements.txt
# pip install pytest pytest-cov
# - name: Run tests
# run: |
# pytest --cov=neispy --cov-report=xml
# - name: Codecov
# uses: codecov/codecov-action@v1