Skip to content

adjust indentation and move patch #40

adjust indentation and move patch

adjust indentation and move patch #40

Workflow file for this run

name: Python package
on: [push]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: '3.x'
- name: Install dependencies
run: |
python -m pip install --upgrade pip moto[all]
pip install ruff pytest
if [ -f requirements.txt ]; then pip install -r requirements.txt; fi
# - name: Lint with ruff
# run: |
# # default set of ruff rules with GitHub Annotations
# ruff --format=github --target-version=py37 .
- name: Test
run: |
python -m unittest discover -s tests -p 'test_*.py'