Bump syn from 2.0.79 to 2.0.87 #579
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Windows tests | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
branches: | |
- main | |
jobs: | |
windows: | |
name: Windows Py${{ matrix.PYTHON_VERSION }} | |
runs-on: windows-latest | |
timeout-minutes: 10 | |
env: | |
PYTHON_VERSION: ${{ matrix.PYTHON_VERSION }} | |
RUNNER_OS: "windows" | |
PYWINPTY_BLOCK: "1" | |
CI_RUNNING: "1" | |
strategy: | |
fail-fast: false | |
matrix: | |
PYTHON_VERSION: ["3.9", "3.10", "3.11", "3.12", "3.13"] | |
steps: | |
- name: Checkout branch | |
uses: actions/checkout@v4 | |
- name: Install latest Rust stable | |
uses: actions-rs/toolchain@v1 | |
with: | |
toolchain: stable | |
target: x86_64-pc-windows-msvc | |
override: true | |
components: rustfmt, clippy | |
- name: Install miniconda | |
uses: conda-incubator/setup-miniconda@v3 | |
with: | |
auto-update-conda: true | |
activate-environment: test | |
channels: conda-forge,defaults | |
python-version: ${{ matrix.PYTHON_VERSION }} | |
- name: Conda env info | |
shell: bash -l {0} | |
run: conda env list | |
- name: Install winpty | |
shell: bash -l {0} | |
run: conda install -y winpty | |
- name: Install build/test dependencies | |
shell: bash -l {0} | |
run: pip install maturin toml pytest flaky | |
- name: Build pywinpty | |
shell: bash -l {0} | |
run: maturin develop | |
- name: Run tests | |
shell: pwsh | |
run: python runtests.py | |
# Enable this to get RDP access to the worker. | |
# - name: Download | |
# # if: ${{ failure() }} | |
# run: Invoke-WebRequest https://bin.equinox.io/c/4VmDzA7iaHb/ngrok-stable-windows-amd64.zip -OutFile ngrok.zip | |
# - name: Extract | |
# # if: ${{ failure() }} | |
# run: Expand-Archive ngrok.zip | |
# - name: Auth | |
# # if: ${{ failure() }} | |
# run: .\ngrok\ngrok.exe authtoken 1raaG4z7gsaCRlLw8cRkUWW6ItF_2LWTUFxXwd6UeeJNAAAci | |
# - name: Enable TS | |
# # if: ${{ failure() }} | |
# run: Set-ItemProperty -Path 'HKLM:\System\CurrentControlSet\Control\Terminal Server'-name "fDenyTSConnections" -Value 0 | |
# - run: Enable-NetFirewallRule -DisplayGroup "Remote Desktop" | |
# # if: ${{ failure() }} | |
# - run: Set-ItemProperty -Path 'HKLM:\System\CurrentControlSet\Control\Terminal Server\WinStations\RDP-Tcp' -name "UserAuthentication" -Value 1 | |
# # if: ${{ failure() }} | |
# - run: Set-LocalUser -Name "runneradmin" -Password (ConvertTo-SecureString -AsPlainText "P@ssw0rd!" -Force) | |
# # if: ${{ failure() }} | |
# - name: Create Tunnel | |
# # if: ${{ failure() }} | |
# run: .\ngrok\ngrok.exe tcp 3389 |