Skip to content

Extend tests for array syntax #88

Extend tests for array syntax

Extend tests for array syntax #88

Workflow file for this run

name: CI
on: [push, pull_request]
jobs:
gitHubActionForPytest:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [3.8, 3,9]
name: GitHub Action
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Install dependencies
run: |
python -m pip install -r requirements-dev.txt
- name: Lint
run: |
make lint
- name: Unit Test
run: |
make test
- name: Coverage
run: |
make coverage