2021-06-06 22:30:55 +03:00
|
|
|
# This is a basic workflow to help you get started with Actions
|
|
|
|
|
2021-06-22 01:27:35 +03:00
|
|
|
name: Setup
|
2021-06-06 22:30:55 +03:00
|
|
|
|
|
|
|
# Controls when the action will run.
|
|
|
|
on:
|
|
|
|
# Triggers the workflow on push or pull request events but only for the master branch
|
|
|
|
push:
|
|
|
|
branches: [ master ]
|
|
|
|
pull_request:
|
|
|
|
branches: [ master ]
|
|
|
|
|
|
|
|
# Allows you to run this workflow manually from the Actions tab
|
|
|
|
#workflow_dispatch:
|
|
|
|
|
|
|
|
# A workflow run is made up of one or more jobs that can run sequentially or in parallel
|
|
|
|
jobs:
|
|
|
|
# This workflow contains a single job called "build"
|
|
|
|
all-setups:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
strategy:
|
|
|
|
matrix:
|
2022-11-28 19:17:23 +03:00
|
|
|
python-version: [ '3.7', '3.8', '3.9', '3.10', '3.11', 'pypy-3.7', 'pypy-3.8', 'pypy-3.9']
|
2021-06-22 01:27:35 +03:00
|
|
|
name: ${{ matrix.python-version }} and tests
|
2021-06-06 22:30:55 +03:00
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v2
|
|
|
|
- name: Setup python
|
|
|
|
uses: actions/setup-python@v2
|
|
|
|
with:
|
|
|
|
python-version: ${{ matrix.python-version }}
|
|
|
|
architecture: x64
|
|
|
|
- run: |
|
|
|
|
pip3 install -r requirements.txt
|
|
|
|
python setup.py install
|
|
|
|
cd tests && py.test
|