mirror of
https://github.com/caronc/apprise-api.git
synced 2024-12-14 10:50:49 +01:00
73350c5bc5
Bumps the actions group with 1 update: [codecov/codecov-action](https://github.com/codecov/codecov-action). Updates `codecov/codecov-action` from 4 to 5 - [Release notes](https://github.com/codecov/codecov-action/releases) - [Changelog](https://github.com/codecov/codecov-action/blob/main/CHANGELOG.md) - [Commits](https://github.com/codecov/codecov-action/compare/v4...v5) --- updated-dependencies: - dependency-name: codecov/codecov-action dependency-type: direct:production update-type: version-update:semver-major dependency-group: actions ... Signed-off-by: dependabot[bot] <support@github.com>
83 lines
1.9 KiB
YAML
83 lines
1.9 KiB
YAML
name: Tests
|
|
|
|
on:
|
|
|
|
# On which repository actions to trigger the build.
|
|
push:
|
|
branches: [ master ]
|
|
pull_request:
|
|
branches: [ master ]
|
|
|
|
# Allow job to be triggered manually.
|
|
workflow_dispatch:
|
|
|
|
# Cancel in-progress jobs when pushing to the same branch.
|
|
concurrency:
|
|
cancel-in-progress: true
|
|
group: ${{ github.workflow }}-${{ github.ref }}
|
|
|
|
jobs:
|
|
|
|
tests:
|
|
|
|
runs-on: ${{ matrix.os }}
|
|
strategy:
|
|
|
|
# Run all jobs to completion (false), or cancel
|
|
# all jobs once the first one fails (true).
|
|
fail-fast: true
|
|
|
|
# Define a minimal test matrix, it will be
|
|
# expanded using subsequent `include` items.
|
|
matrix:
|
|
os: ["ubuntu-latest"]
|
|
python-version: ["3.10"]
|
|
bare: [false]
|
|
|
|
defaults:
|
|
run:
|
|
shell: bash
|
|
|
|
env:
|
|
OS: ${{ matrix.os }}
|
|
PYTHON: ${{ matrix.python-version }}
|
|
BARE: ${{ matrix.bare }}
|
|
|
|
name: Python ${{ matrix.python-version }} on ${{ matrix.os }} ${{ matrix.bare && '(bare)' || '' }}
|
|
steps:
|
|
|
|
- name: Acquire sources
|
|
uses: actions/checkout@v4
|
|
|
|
- name: Install prerequisites (Linux)
|
|
if: runner.os == 'Linux'
|
|
run: |
|
|
sudo apt-get update
|
|
|
|
- name: Install project dependencies (Baseline)
|
|
run: |
|
|
pip install -r requirements.txt -r dev-requirements.txt
|
|
|
|
# For saving resources, code style checking is
|
|
# only invoked within the `bare` environment.
|
|
- name: Check code style
|
|
if: matrix.bare == true
|
|
run: |
|
|
flake8 apprise_api --count --show-source --statistics
|
|
|
|
- name: Run tests
|
|
run: |
|
|
coverage run -m pytest apprise_api
|
|
|
|
- name: Process coverage data
|
|
run: |
|
|
coverage xml
|
|
coverage report
|
|
|
|
- name: Upload coverage data
|
|
uses: codecov/codecov-action@v5
|
|
with:
|
|
files: ./coverage.xml
|
|
fail_ci_if_error: false
|
|
token: ${{ secrets.CODECOV_TOKEN }}
|