Fix MOTD for extra data #2242
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Coverage check | |
on: | |
push: | |
branches: | |
- main | |
- current-release | |
- "*LTS" | |
tags: | |
- "!*" # Do not execute on tags | |
pull_request: | |
branches: | |
- main | |
- current-release | |
- "*LTS" | |
jobs: | |
test: | |
runs-on: ${{ matrix.os }} | |
strategy: | |
matrix: | |
python-version: [3.9] | |
os: [ubuntu-latest] | |
fail-fast: false | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: actions/setup-python@v1 | |
with: | |
python-version: ${{ matrix.python-version }} | |
- name: Install dependencies 🔨 | |
run: | | |
python -m pip install --upgrade pip | |
pip install tox | |
- name: Run coverage | |
run: tox -e coverage | |
continue-on-error: true | |
- uses: codecov/codecov-action@v2 | |
with: | |
files: ./coverage.xml | |
fail_ci_if_error: false |