Skip to content

Update changelog for 4.0.0 #48

Update changelog for 4.0.0

Update changelog for 4.0.0 #48

Workflow file for this run

name: Build and Test
on:
push:
branches: [ master, develop ]
pull_request:
branches: [ master, develop ]
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest]
python-version: ["3.7", "3.8", "3.9", "3.10", "3.11-dev"]
include:
- os: macos-latest
python-version: "3.10"
- os: windows-latest
python-version: "3.10"
steps:
- uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Upgrade pip
run: python -m pip install --upgrade pip
- name: Upgrade build tools and pytest
run: pip install --upgrade build wheel setuptools pytest
- name: Install dependencies
run: pip install ".[testing,yaml]"
- name: Build distributions
run: python -m build
- name: Test with Pytest
run: pytest
pylint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: "3.10"
- name: Upgrade pip
run: python -m pip install --upgrade pip
- name: Upgrade build tools and pytest
run: pip install --upgrade build wheel setuptools
- name: Install dependencies
run: pip install ".[testing,yaml]"
- name: Lint
run: pylint munch setup.py tests