tkinter minimal #78
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: Test Python Package | |
on: | |
workflow_dispatch: | |
jobs: | |
minimal: | |
runs-on: macos-13 | |
steps: | |
- name: Install Python | |
uses: actions/setup-python@v5 | |
with: | |
python-version: "3.9" | |
- name: import tkinter | |
run: | | |
echo python --version | |
python3.9 -c "import tkinter" |