Skip to content

Bump netqasm from 0.13.3 to 0.15.0 #140

Bump netqasm from 0.13.3 to 0.15.0

Bump netqasm from 0.13.3 to 0.15.0 #140

Workflow file for this run

name: Build and test ADK
on:
push:
branches:
- dev
pull_request:
branches:
- dev
jobs:
test:
name: Build and test Python 🐍
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Python 3.8
uses: actions/setup-python@v4
with:
python-version: 3.8
- name: Install dependencies
run: |
python -m pip install --upgrade pip setuptools wheel
pip install -e .[dev] --upgrade
- name: Test with unittest
run: |
coverage run
coverage report
- name: Static code analysis
run: MYPYPATH=./src mypy --strict --ignore-missing-imports -p adk
- name: Run pylint
run: pylint ./src/