Skip to content

Add compose v2 support to letsencrypt init script #120

Add compose v2 support to letsencrypt init script

Add compose v2 support to letsencrypt init script #120

Workflow file for this run

# For more information see: https://help.github.com/actions/language-and-framework-guides/using-python-with-github-actions
name: pytest
on:
push:
branches: [ master, beta ]
pull_request:
branches: [ master, beta ]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ['3.7', '3.8', '3.9', '3.10']
steps:
- uses: actions/checkout@v2
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- name: Upgrade pip
run: python -m pip install --upgrade pip
- name: Install Python dependencies
run: pip install -r requirements_tests.txt
- name: Run pytest
run: pytest -vv -rf