Skip to content

bump to 1.4.4

bump to 1.4.4 #277

Workflow file for this run

name: Win_Nuitka
on: [push]
jobs:
test:
runs-on: ${{ matrix.os }}
strategy:
matrix:
python-version: [3.10.4]
os: [windows-latest]
steps:
- uses: actions/checkout@v2
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- uses: actions/cache@v2
name: Configure pip caching
with:
path: ~/.cache/pip
key: ${{ runner.os }}-pip-${{ hashFiles('**/setup.py') }}
restore-keys: |
${{ runner.os }}-pip-
- name: Install dependencies
run: |
pip install --no-cache-dir -e . && pip install -r requirements.nuitka.txt
- name: Run Binary Build
run: |
python open_webdriver/tests/nuitka/test_binary_build.py