Skip to content

CI

CI #3

Workflow file for this run

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