8000 Issue #257: garmindb_bug_report.py can run from any directory · tcgoetz/GarminDB@3e9a4ac · GitHub
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

Issue #257: garmindb_bug_report.py can run from any directory #448

Issue #257: garmindb_bug_report.py can run from any directory

Issue #257: garmindb_bug_report.py can run from any directory #448

Workflow file for this run

name: Python application
on: [push]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
with:
submodules: 'true'
- name: Set up Python 3.11
uses: actions/setup-python@v2
with:
python-version: 3.11
- name: Setup repo
run: |
make setup_repo
- name: Update Python tools
run: |
bash -c "source .venv/bin/activate && python -m pip install --upgrade pip"
- name: Install dependencies
run: |
bash -c "source .venv/bin/activate && make setup_pipeline"
- name: Lint with flake8
run: |
bash -c "source .venv/bin/activate && make flake8"
- name: Test
run: |
bash -c "source .venv/bin/activate && make verify_commit"
0