Skip to content

Updating year

Updating year #1

Workflow file for this run

name: Build and test pymm
on:
push:
branches:
- main
pull_request:
jobs:
run-pymm-local:
timeout-minutes: 30
strategy:
fail-fast: false
matrix:
python-version: ['3.8']
os: [ubuntu-latest]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v2
with:
fetch-depth: 0
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- name: Install gmsh
run: |
sudo apt-get update
sudo apt-get -y install gmsh
- name: Install test dependecies
run: |
pip install --upgrade pip setuptools wheel
pip install -r dev-requirements.txt
- name: Install pymm
run: |
pip install .
- name: Check code style and linting
run: |
black --check src/ tests/ setup.py
pylint src/ tests/ setup.py
mypy --ignore-missing-imports src/ tests/ setup.py
- name: Run the tests
run: |
pytest --cov=pymm --cov-report term-missing tests/