Skip to content

yuwtennis is running deployment workflow #15

yuwtennis is running deployment workflow

yuwtennis is running deployment workflow #15

Workflow file for this run

# This workflow will install Python dependencies, run tests and lint with a single version of Python
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-python-with-github-actions
name: CI/CD for drive_to_es
run-name: ${{ github.actor }} is running deployment workflow
on: [push]
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.11"]
poetry-version: ["1.5.1"]
steps:
- uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Test
run: |
cd household_expenses/publish/drive_to_es/
sudo apt update && sudo apt install -y pipx && \
pipx install poetry && \
poetry install
poetry run make test lint static-type-check