Pin css-inline to v0.11 #81
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: run | |
on: | |
push: | |
branches: | |
- main | |
- ci | |
pull_request: | |
branches: | |
- main | |
jobs: | |
tests: | |
# "ubuntu-latest" does not have Python 3.6 | |
runs-on: ubuntu-20.04 | |
strategy: | |
fail-fast: false | |
matrix: | |
python-version: [3.6, 3.7, 3.8, 3.9, "3.10", "3.11", "pypy-3.7", "pypy-3.8"] | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Set up Python ${{ matrix.python-version }} | |
uses: actions/setup-python@v2 | |
with: | |
python-version: ${{ matrix.python-version }} | |
- name: Install dependencies | |
run: | | |
pip install -e .[testing] | |
pip install pytest | |
- name: Run test suite | |
run: | | |
pytest | |
- name: Test CSS inlining | |
run: | | |
if [[ "${{ matrix.python-version }}" != "3.6" ]]; then | |
pip install -e .[css_inlining] | |
pytest | |
else | |
echo "Skipping CSS inlining tests for Python 3.6" | |
fi |