Skip to content

Mapping for DP IDs #543

Mapping for DP IDs

Mapping for DP IDs #543

Workflow file for this run

name: Build Test
on:
push:
pull_request:
workflow_dispatch:
jobs:
tests:
name: "Python ${{ matrix.python-version }}"
runs-on: "ubuntu-20.04"
env:
USING_COVERAGE: '3.6,3.8'
strategy:
matrix:
python-version: ["2.7", "3.5", "3.6", "3.7", "3.8"]
steps:
- uses: "actions/checkout@v3"
- uses: "actions/setup-python@v4"
with:
python-version: "${{ matrix.python-version }}"
- name: "Install dependencies"
run: |
set -xe
python -VV
python -m site
python -m pip install --upgrade pip setuptools wheel
python -m pip install --upgrade pycryptodome requests colorama
- name: "Run test.py on ${{ matrix.python-version }}"
run: "python -m test.py"