Skip to content

requirements: keep python 3.6 support #78

requirements: keep python 3.6 support

requirements: keep python 3.6 support #78

Workflow file for this run

name: build
on:
- push
- pull_request
jobs:
check:
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v2
- uses: actions/setup-python@v2
with:
python-version: 3.8
- name: Install python packages
run: |
pip3 install black
- name: Run black
run: |
black --check $(git ls-files '*.py')
build:
strategy:
fail-fast: false
matrix:
python-version:
- "3.6"
- "3.7"
- "3.8"
- "3.9"
- "3.10"
- "3.11"
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v2
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install pyyaml
- name: Prepare environment
run: |
./setup-venv
- name: Test
run: |
./ci/test.py -vb