CI #3
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: CI | |
on: [workflow_dispatch] | |
jobs: | |
build: | |
runs-on: macos-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
- name: Set up Python | |
uses: actions/setup-python@v5 | |
with: | |
python-version: 3.11 | |
- name: Install coveralls | |
run: | | |
pip install coveralls | |
- name: Adjust PATH for Python | |
run: | | |
echo "/Users/runner/hostedtoolcache/Python/3.11.9/x64/bin" >> $GITHUB_PATH | |
- name: Run coveralls with login shell (fails) | |
shell: bash -l {0} | |
run: | | |
coveralls --version |