Skip to content

⬆️ Bump coverage-badge from 1.0.1 to 1.1.0 #81

⬆️ Bump coverage-badge from 1.0.1 to 1.1.0

⬆️ Bump coverage-badge from 1.0.1 to 1.1.0 #81

Workflow file for this run

name: Test
on:
push:
pull_request:
types: [opened, synchronize]
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [3.8, 3.9]
fail-fast: false
steps:
- uses: actions/checkout@v2
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- name: Install Poetry
run: curl -sSL https://install.python-poetry.org | python3 -
- name: Install Dependencies
run: poetry install -E aiohttp
- name: Lint
run: bash scripts/lint.sh
- name: Test
run: bash scripts/test.sh
- name: Upload coverage
uses: codecov/codecov-action@v2