Skip to content

Remove a bit that snuck into the last commit. #99

Remove a bit that snuck into the last commit.

Remove a bit that snuck into the last commit. #99

Workflow file for this run

name: cmlutils CI
on: [push, pull_request, workflow_dispatch]
jobs:
test:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
python-version:
- "3.8"
- "3.9"
- "3.10"
- "3.11"
- "3.12"
env:
COVERALLS_REPO_TOKEN: ${{ secrets.GITHUB_TOKEN }}
steps:
- uses: actions/checkout@v2
- name: Setup Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- name: Upgrade pip
run: |
pip install -U pip
- name: Install dependencies
run: |
pip install -r test-requirements.txt
- name: Execute tests
run: |
make lint
make coverage
pip freeze
- name: Run coveralls
run: |
coveralls --service=github