Skip to content

deps: bump agrc-supervisor from 3.0.3 to 3.1.0 in the safe-dependencies group #6

deps: bump agrc-supervisor from 3.0.3 to 3.1.0 in the safe-dependencies group

deps: bump agrc-supervisor from 3.0.3 to 3.1.0 in the safe-dependencies group #6

Workflow file for this run

name: Pull Request Events
on: pull_request
concurrency:
group: ${{ github.workflow }}-${{ github.head_ref || github.ref }}
cancel-in-progress: true
jobs:
test:
name: Test
runs-on: ubuntu-latest
steps:
- name: ⬇️ Set up code
uses: actions/checkout@v4
with:
show-progress: false
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: "3.11"
cache: pip
cache-dependency-path: setup.py
- name: Install libkrb5 for Kerberos on Linux
run: |
sudo apt-get update
sudo apt-get install -y libkrb5-dev
- name: Install module
run: pip install .[tests]
- name: 🧶 Lint
run: ruff check --output-format=github .
- name: 🧪 Run pytest
run: pytest