Skip to content

Bump manylinux version. #104

Bump manylinux version.

Bump manylinux version. #104

Workflow file for this run

name: "Pip"
concurrency:
group: ${{ github.workflow }}-${{ github.event.number }}-${{ github.event.type }}
cancel-in-progress: true
on:
workflow_dispatch:
pull_request:
push:
jobs:
build:
name: Build with Pip
runs-on: ${{ matrix.platform }}
strategy:
fail-fast: false
matrix:
platform: [ubuntu-latest, windows-latest, macos-latest]
python-version: ["3.x"]
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Build and install
run: pip install --verbose .
- name: Check if import is possible
run: python -c "import pyPublicDecompWT"