Skip to content

Add the code blocks as ```text to avoid highlighting (#61) #136

Add the code blocks as ```text to avoid highlighting (#61)

Add the code blocks as ```text to avoid highlighting (#61) #136

Workflow file for this run

---
name: Tests
on:
push:
branches: ["master"]
pull_request:
branches: ["master"]
jobs:
tests:
name: "Python ${{ matrix.python-version }}"
runs-on: "ubuntu-latest"
strategy:
matrix:
python-version: ["3.7", "3.8", "3.9", "3.10"]
steps:
- uses: "actions/checkout@v2"
- uses: "actions/setup-python@v2"
with:
python-version: "${{ matrix.python-version }}"
- uses: "actions/cache@v2"
with:
path: ~/.pip/cache
key: ${{ runner.os }}-pip-${{ hashFiles('requirements.txt') }}
restore-keys: |
${{ runner.os }}-pip-
${{ runner.os }}-
- name: "Install dependencies"
run: scripts/install
- name: "Run tests"
run: scripts/test