Skip to content

Bump pyyaml from 6.0.1 to 6.0.2 (#104) #227

Bump pyyaml from 6.0.1 to 6.0.2 (#104)

Bump pyyaml from 6.0.1 to 6.0.2 (#104) #227

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