Skip to content

Merge pull request #4 from boriel/dependabot/pip/black-24.3.0 #14

Merge pull request #4 from boriel/dependabot/pip/black-24.3.0

Merge pull request #4 from boriel/dependabot/pip/black-24.3.0 #14

Workflow file for this run

name: prod aws deployment
on:
push:
branches:
- main
jobs:
release:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ['3.8', '3.9', '3.10']
defaults:
run:
working-directory: .
steps:
- name: Checkout
uses: actions/checkout@v2
with:
fetch-depth: 0
- name: Set up Python 3.x
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- name: Caches pip
uses: actions/cache@v2
with:
path: ~/.cache/pip
key: ${{ hashFiles('pyproject.toml') }}-${{ hashFiles('poetry.lock') }}
- name: Install Poetry
run: pip install poetry
- name: Install dependencies
run: poetry install
- name: Run Lint
run: poetry run make lint
- name: Run Tests
run: poetry run make test