Skip to content

build(deps): bump coverallsapp/github-action from 2.3.0 to 2.3.4 in the github-actions group #552

build(deps): bump coverallsapp/github-action from 2.3.0 to 2.3.4 in the github-actions group

build(deps): bump coverallsapp/github-action from 2.3.0 to 2.3.4 in the github-actions group #552

Workflow file for this run

name: CI
on:
push:
branches: [master]
pull_request:
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
env:
FORCE_COLOR: 1 # colored output by pytest etc.
permissions: {} # Set permissions at the job level.
jobs:
lint:
runs-on: ubuntu-24.04
steps:
- uses: actions/checkout@v4
- name: Set up Python 3.11
uses: actions/setup-python@v5
with:
python-version: '3.11'
cache: pip
- uses: pre-commit/[email protected]
with:
extra_args: --all-files --color=always
tests:
runs-on: ubuntu-24.04
steps:
- uses: actions/checkout@v4
- name: Set up Python 3.11
uses: actions/setup-python@v5
with:
python-version: '3.11'
cache: pip
- run: |
python -m pip install --upgrade pip
python -m pip install hatch
- name: Run test suite in parallel with measuring code coverage
run: hatch test --cover-quiet --parallel
- name: Upload coverage data to coveralls.io
uses: coverallsapp/github-action@cfd0633edbd2411b532b808ba7a8b5e04f76d2c8 # v2.3.4