name: CI
-on: [push, pull_request]
+on:
+ push:
+ pull_request:
+ workflow_dispatch:
jobs:
test:
+ name: Python ${{ matrix.python }} on ${{ matrix.os }}
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
python:
- - 3.5
- - 3.6
- - 3.7
- - 3.8
- - 3.9
+ - '3.5'
+ - '3.6'
+ - '3.7'
+ - '3.8'
+ - '3.9'
+ - '3.10'
os:
- ubuntu-latest
- macos-latest
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python }}
+ cache: pip
- run: python --version
- run: pip --version
- - name: Get pip cache directory
- id: pip-cache
- run: |
- echo "::set-output name=dir::$(pip cache dir)"
-
- - name: Cache dependencies
- uses: actions/cache@v2
- with:
- path: ${{ steps.pip-cache.outputs.dir }}
- key: ${{ runner.os }}-python-v${{ matrix.python }}-${{ hashFiles('**/requirements.txt') }}
- restore-keys: |
- ${{ runner.os }}-python-v${{ matrix.python }}-${{ hashFiles('**/requirements.txt') }}
- ${{ runner.os }}-python-v${{ matrix.python }}-
-
- name: Install Python dependencies
run: pip install -r requirements.txt