Skip to content

Bump moto from 4.2.13 to 5.0.15 #1418

Bump moto from 4.2.13 to 5.0.15

Bump moto from 4.2.13 to 5.0.15 #1418

Workflow file for this run

name: testing
on:
push:
branches: [main]
tags: ['v*']
pull_request:
branches: [main]
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: '3.9'
cache: pip
cache-dependency-path: pyproject.toml
- name: Run pre-commit
run: |
pip install pre-commit
pre-commit run --all-files --show-diff-on-failure
test:
services:
local_mongodb:
image: mongo:4.0
ports:
- 27017:27017
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ['3.9', '3.10', '3.11']
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
cache: pip
cache-dependency-path: pyproject.toml
- name: Setup Graphviz
uses: ts-graphviz/setup-graphviz@v1
- name: Install dependencies
run: |
pip install uv
uv pip install .[strict,tests] --system
- name: Test
run: pytest --cov=jobflow --cov-report=xml
- uses: codecov/codecov-action@v1
if: matrix.python-version == '3.11' && github.repository == 'materialsproject/jobflow'
with:
token: ${{ secrets.CODECOV_TOKEN }}
file: ./coverage.xml
docs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Install pandoc
run: sudo apt-get install pandoc
- uses: actions/setup-python@v5
with:
python-version: '3.11'
cache: pip
cache-dependency-path: pyproject.toml
- name: Install dependencies
run: |
pip install uv
uv pip install .[strict,docs] --system
- name: Build
run: sphinx-build docs docs_build
automerge:
needs: [lint, test, docs]
runs-on: ubuntu-latest
permissions:
pull-requests: write
contents: write
steps:
- uses: fastify/github-action-merge-dependabot@v3