Skip to content

fix: confirm_delivery on every channel creation (#455) #235

fix: confirm_delivery on every channel creation (#455)

fix: confirm_delivery on every channel creation (#455) #235

Workflow file for this run

name: coverage
on:
push:
paths-ignore:
- '**.md'
- 'petisco/VERSION'
- '.github/ISSUE_TEMPLATE'
- '.github/workflows/ci.yml'
- '.github/workflows/ci.macos.yml'
branches:
- main
jobs:
coverage:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v5
with:
python-version: '3.11'
cache: pip
- name: Setup Python (uv)
run: | # from https://github.com/astral-sh/uv/issues/1386
curl -LsSf https://astral.sh/uv/install.sh | sh
uv venv .venv
echo "VIRTUAL_ENV=.venv" >> $GITHUB_ENV
echo "$PWD/.venv/bin" >> $GITHUB_PATH
mkdir -p $(pip cache dir)
- name: Install dependencies
run: |
uv pip install lume
lume -install
- name: Coverage
run: lume -coverage
- uses: codecov/codecov-action@v3
with:
files: cobertura_coverage.xml
directory: output/coverage/
name: petisco
fail_ci_if_error: true