Skip to content

Update Somatic template #34

Update Somatic template

Update Somatic template #34

Workflow file for this run

name: CI
on:
push:
branches:
- main
pull_request:
jobs:
testing:
runs-on: ubuntu-latest
strategy:
matrix:
python-version:
- '3.8'
- '3.9'
- '3.10'
- '3.11'
steps:
- name: Checkout repository
uses: actions/checkout@v3
- name: Setup Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Install project Python dependencies
run: pip install -r requirements_dev.txt
- name: Run tests
run: pytest
- name: Check Python linting
run: flake8 .
- name: Check Python formatting
run: make black-check