Skip to content

Remove usage of deprecated importlib.resources functions #279

Remove usage of deprecated importlib.resources functions

Remove usage of deprecated importlib.resources functions #279

Workflow file for this run

name: Lint & Tests
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.10", "3.9", "3.8"]
steps:
- uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install flake8 black==23.1.0 textX==3.0.0 requests py-algorand-sdk==1.18.0
- name: Run flake8
run: flake8 ${{ github.workspace }} --ignore=E501,F403,F405,E126,E121,W503,E203
- name: Run Black
run: black ${{ github.workspace }} --check
- name: Run Unit tests
run: |
python -m unittest