Skip to content

fix(deps): update dependency ruff to v0.8.4 #871

fix(deps): update dependency ruff to v0.8.4

fix(deps): update dependency ruff to v0.8.4 #871

Workflow file for this run

# This workflow will install Python dependencies, run pytests and run notebooks
# then it will in python 3.9 (ubuntu-latest) create a badge with the coverage
# and add it to the PR. This badge will be updated if the PR is updated.
name: smoketests
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
smoketests:
runs-on: ubuntu-latest
strategy:
matrix:
invoke_command: ["smoketest-docker", "smoketest-cli"]
steps:
- name: Checkout (GitHub)
uses: actions/checkout@v4
- name: Setup Python
uses: actions/setup-python@v5
with:
python-version: 3.11
- name: Install invoke
run: |
python -m pip install --upgrade pip
pip install invoke
- name: Run integration test
shell: bash
run: |
pip install .
inv ${{ matrix.invoke_command }}