Bump serve-static and express in /docs #111
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
# ubuntu-latest does not have a release for python3.6 - until a decision is made to deprecate support we need to run tests against ubuntu-20.04 | |
name: Run 3.6 tests | |
on: | |
push: | |
branches: | |
- 'releases/**' | |
- master | |
pull_request: | |
branches: | |
- 'releases/**' | |
- master | |
jobs: | |
test_3_6: | |
strategy: | |
matrix: | |
python-version: [ '3.6' ] | |
runs-on: ubuntu-20.04 | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Set up Python | |
uses: actions/setup-python@v2 | |
with: | |
python-version: ${{ matrix.python-version }} | |
- name: Install dependencies | |
run: | | |
python -m pip install --upgrade pip | |
pip install pipenv==2018.11.26 | |
- name: Test | |
run: | | |
echo "Installing pipenv dependencies" | |
PIPENV_NOSPIN=true pipenv install --dev | |
pipenv run test | |
test_3_7: | |
strategy: | |
matrix: | |
python-version: [ '3.7' ] | |
runs-on: ubuntu-22.04 | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Set up Python | |
uses: actions/setup-python@v2 | |
with: | |
python-version: ${{ matrix.python-version }} | |
- name: Install dependencies | |
run: | | |
python -m pip install --upgrade pip | |
pip install pipenv==2018.11.26 | |
- name: Test | |
run: | | |
echo "Installing pipenv dependencies" | |
PIPENV_NOSPIN=true pipenv install --dev | |
pipenv run test |