Skip to content

Support code action #119

Support code action

Support code action #119

Workflow file for this run

name: unit test
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-22.04
strategy:
matrix:
python-version: ['3.7', '3.8', '3.9', '3.10', '3.11', '3.12']
name: ${{ matrix.python-version }}
steps:
- uses: actions/checkout@master
- uses: actions/setup-python@v1
with:
python-version: ${{ matrix.python-version }}
architecture: x64
- name: Install dependencies
run: pip install 'pytest>=3.0.3' mock requests jedi
- name: Run tests
run: py.test
legacy:
runs-on: ubuntu-22.04
container: python:2.7
steps:
- uses: actions/checkout@master
- name: Install dependencies
run: pip install 'pytest>=3.0.3' mock requests jedi
- name: Run tests
run: py.test