Skip to content

Bump docker/build-push-action from 6.6.0 to 6.7.0 #130

Bump docker/build-push-action from 6.6.0 to 6.7.0

Bump docker/build-push-action from 6.6.0 to 6.7.0 #130

Workflow file for this run

name: Pytest
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: 3.8
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install pytest
pip install pytest-mock
pip install -r requirements.txt
- name: Run tests
run: |
pytest tests/test_send.py