Skip to content

Bump urllib3 from 2.2.3 to 2.3.0 #52

Bump urllib3 from 2.2.3 to 2.3.0

Bump urllib3 from 2.2.3 to 2.3.0 #52

Workflow file for this run

name: Coverage
on:
push:
branches:
- main
jobs:
test:
runs-on: ubuntu-latest
steps:

Check failure on line 11 in .github/workflows/coverage.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/coverage.yml

Invalid workflow file

You have an error in your yaml syntax on line 11
- name: Upload coverage data to coveralls.io
- uses: actions/checkout@v2
run: |
python -m pip install --upgrade pip
pip install coveralls
coveralls --service=github
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
COVERALLS_PARALLEL: true
coveralls:
name: Indicate completion to coveralls.io
needs: test
runs-on: ubuntu-latest
container: python:3-slim
steps:
- name: Finish
run: |
pip3 install --upgrade coveralls
coveralls --service=github --finish
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}