Froster PyPi install on Ubuntu-latest. #339
This file contains hidden or 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: Install Froster remotely | |
| run-name: Froster PyPi install on Ubuntu-latest. | |
| on: [push, pull_request] | |
| jobs: | |
| install: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Set up Python | |
| uses: actions/setup-python@v5 | |
| with: | |
| python-version: '3.11' | |
| - name: Install pipx | |
| run: python -m pip install pipx | |
| - name: Install froster remotely | |
| run: curl -s https://raw.githubusercontent.com/dirkpetersen/froster/main/install.sh?$(date +%s) | bash | |
| - name: Source ~/.bashrc | |
| run: source ~/.bashrc | |
| - name: Check Froster is installed | |
| run: froster --info | |