Skip to content

merge queue: embarking main (879ace0) and [#103 + #104] together #224

merge queue: embarking main (879ace0) and [#103 + #104] together

merge queue: embarking main (879ace0) and [#103 + #104] together #224

Workflow file for this run

name: CI
on:
push:
pull_request_target:
workflow_dispatch:
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: ./.github/actions/setup
- run: flake8 garminworkouts tests
build:
runs-on: ubuntu-latest
needs: [lint]
strategy:
matrix:
python-version: ["3.9", "3.10", "3.11"]
env:
PYTHON_VERSION: ${{ matrix.python-version }}
steps:
- uses: actions/checkout@v4
- uses: ./.github/actions/setup
with:
python-version: ${{ matrix.python-version }}
- run: pytest --cov=garminworkouts --cov-report=xml tests
- uses: codecov/codecov-action@v4
with:
env_vars: PYTHON_VERSION
result:
if: ${{ always() }}
runs-on: ubuntu-latest
needs: [build]
steps:
- run: |
result="${{ needs.build.result }}"
if [[ $result == "success" || $result == "skipped" ]]; then
exit 0
else
exit 1
fi