Skip to content

Commit

Permalink
without setup-python changes 3.10.11
Browse files Browse the repository at this point in the history
  • Loading branch information
priya-kinthali committed Nov 7, 2024
1 parent ae31ece commit e4ada30
Show file tree
Hide file tree
Showing 2 changed files with 38 additions and 3 deletions.
35 changes: 35 additions & 0 deletions .github/workflows/compare.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
name: Test Python Tk
on:
push:
branches:
- test-649
workflow_dispatch:

jobs:
tests-poetry:
strategy:
matrix:
os: [macos-13]
python-version: ["3.10.1"]
fail-fast: false
name: ${{ matrix.python-version }} - ${{ matrix.os }}
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Check all environment variables
run: printenv
- name: Prepare Ubuntu xvfb
if: runner.os == 'Linux'
run: |
sudo apt-get update
sudo apt-get install -y libxkbcommon-x11-0 xvfb
- name: Run tk script (closes itself after 5 seconds) - Ubuntu
if: runner.os == 'Linux'
run: xvfb-run python tk_min.py
- name: Run tk script (closes itself after 5 seconds)
if: runner.os != 'Linux'
run: python tk_min.py
6 changes: 3 additions & 3 deletions .github/workflows/sample.yml
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
name: Test Python Tk
on:
push:
branches:
- test-649
# push:
# branches:
# - test-649
workflow_dispatch:

jobs:
Expand Down

0 comments on commit e4ada30

Please sign in to comment.