mirror of https://github.com/encode/starlette.git
26 lines
516 B
YAML
26 lines
516 B
YAML
---
|
|
name: Test Suite
|
|
|
|
on:
|
|
pull_request:
|
|
branches: ["master"]
|
|
|
|
jobs:
|
|
tests:
|
|
name: "Python ${{ matrix.python-version }}"
|
|
runs-on: "ubuntu-latest"
|
|
|
|
strategy:
|
|
matrix:
|
|
python-version: ["3.6", "3.7", "3.8"]
|
|
|
|
steps:
|
|
- uses: "actions/checkout@v2"
|
|
- uses: "actions/setup-python@v1"
|
|
with:
|
|
python-version: "${{ matrix.python-version }}"
|
|
- name: "Install dependencies"
|
|
run: "scripts/install"
|
|
- name: "Run tests"
|
|
run: "scripts/test"
|