upates #21
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: pip install test | |
on: [push, pull_request] | |
jobs: | |
pip: | |
name: pip install | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- run: sudo apt-get update | |
- run: sudo apt-get upgrade -y | |
- run: sudo apt-get install -y python3-pip python3-gi | |
- run: pip install . |