mirror of
https://github.com/kevin1024/vcrpy.git
synced 2025-12-08 16:53:23 +00:00
36 lines
717 B
YAML
36 lines
717 B
YAML
name: Test
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- master
|
|
pull_request:
|
|
workflow_dispatch:
|
|
|
|
jobs:
|
|
build:
|
|
runs-on: ubuntu-latest
|
|
strategy:
|
|
fail-fast: false
|
|
matrix:
|
|
python-version: ["3.7", "3.8", "3.9", "3.10", "3.11", "pypy-3.8"]
|
|
|
|
steps:
|
|
- uses: actions/checkout@v3.5.2
|
|
|
|
- name: Set up Python ${{ matrix.python-version }}
|
|
uses: actions/setup-python@v4
|
|
with:
|
|
python-version: ${{ matrix.python-version }}
|
|
|
|
- name: Install project dependencies
|
|
run: |
|
|
pip install --upgrade pip
|
|
pip install codecov tox tox-gh-actions
|
|
|
|
- name: Run tests with tox
|
|
run: tox
|
|
|
|
- name: Run coverage
|
|
run: codecov
|