Update README_PT.md #9
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: Testing PyMOL in macOS | |
on: | |
push: | |
branches: [main] | |
release: | |
types: [created] | |
jobs: | |
install-and-test: | |
runs-on: macos-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Set up Python | |
uses: actions/setup-python@v4 | |
with: | |
python-version: 3.11 | |
- name: Install dependencies | |
run: | | |
brew install Caskroom/cask/xquartz | |
brew install tcl-tk | |
pip install pyqt5 | |
- name: Install pymol | |
run: | | |
brew install brewsci/bio/pymol | |
- name: Launch PyMOL | |
run: | | |
pymol -c | |
pymol --version |