Skip to content

Merge branch 'main' into dependabot/github_actions/docker/build-push-… #8

Merge branch 'main' into dependabot/github_actions/docker/build-push-…

Merge branch 'main' into dependabot/github_actions/docker/build-push-… #8

Workflow file for this run

# This workflow will perform a minimal test suite for mml-core with a single version of Python
# For more information see:
name: mml minimal tests
on:
push:
branches:
- '**' # matches every branch
- '!main' # excludes main branch (will run full tests here)
permissions:
contents: read
jobs:
build:
runs-on: ubuntu-latest
timeout-minutes: 15
steps:
- uses: actions/checkout@v4
- name: Set up Python 3.10
uses: actions/setup-python@v3
with:
python-version: "3.10"
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install .[dev]
- name: Test with pytest
run: |
pytest