Skip to content

Merge pull request #66 from yuwtennis/refactor/security-hardening-for… #2

Merge pull request #66 from yuwtennis/refactor/security-hardening-for…

Merge pull request #66 from yuwtennis/refactor/security-hardening-for… #2

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
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: |
apt install pipx && \
pipx install poetry && \
poetry install && \
cd household_expenses/publish/drive_to_es/
make test
make lint
make static-type-check