Skip to content

Updated plugin version #232

Updated plugin version

Updated plugin version #232

Workflow file for this run

name: Auto unit test
on: [push, pull_request]
jobs:
unit-tests:
runs-on: ubuntu-20.04
strategy:
matrix:
python-version: ["3.6", "3.7"]
steps:
- uses: actions/checkout@v2
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- uses: actions/cache@v2
with:
path: ~/.cache/pip
key: ${{ runner.os }}-pip-${{ hashFiles('**/requirements.txt') }}
restore-keys: |
${{ runner.os }}-pip-
- name: Run unit tests
run: make unit-tests