Skip to content

Bump the dependencies group across 1 directory with 7 updates #265

Bump the dependencies group across 1 directory with 7 updates

Bump the dependencies group across 1 directory with 7 updates #265

Workflow file for this run

---
name: CI
on: [push, pull_request]
jobs:
verify:
runs-on: ubuntu-latest
container: debian:bookworm
steps:
- uses: actions/checkout@v4
with:
persist-credentials: false
- name: Install dependencies
run: |
apt-get update && apt-get install --yes --no-install-recommends make openssl python3 python3-poetry
poetry install --no-ansi
- name: Verify ruleset signature
run: |
make verify
lint:
runs-on: ubuntu-latest
container: debian:bookworm
steps:
- uses: actions/checkout@v4
with:
persist-credentials: false
- name: Install dependencies
run: |
apt-get update && apt-get install --yes --no-install-recommends make python3 python3-poetry
poetry install --no-ansi
- name: Run all linters
run: |
make lint