Skip to content

Bump ruff from 0.8.5 to 0.8.6 in the dependencies group #1436

Bump ruff from 0.8.5 to 0.8.6 in the dependencies group

Bump ruff from 0.8.5 to 0.8.6 in the dependencies group #1436

Workflow file for this run

---
name: ci
on: [push, pull_request, merge_group]
jobs:
lint:
runs-on: ubuntu-latest
container:
image: registry.fedoraproject.org/fedora:37
steps:
- run: dnf install -y git make
- uses: actions/checkout@v4
with:
persist-credentials: false
- name: Install dependencies
run: |
make test-deps
pip install poetry==1.8.2
poetry install --no-ansi
- name: Run linters
run: |
git config --global --add safe.directory '*'
make lint
build-rpm:
runs-on: ubuntu-latest
container:
image: registry.fedoraproject.org/fedora:37
steps:
- run: dnf install -y git make
- uses: actions/checkout@v4
with:
persist-credentials: false
- name: Install dependencies
run: |
make build-deps
- name: Build RPM
run: |
git config --global --add safe.directory '*'
make build-rpm
- name: Check reproducibility
run: |
make test-deps
make reprotest
launcher-tests:
runs-on: ubuntu-latest
container:
image: registry.fedoraproject.org/fedora:37
steps:
- run: dnf install -y make
- uses: actions/checkout@v4
with:
persist-credentials: false
- name: Install dependencies
run: |
make test-deps
pip install poetry==1.8.2
poetry install --no-ansi
- name: Run launcher tests
run: |
make test-launcher