Skip to content

chore: Use just to update dependencies #421

chore: Use just to update dependencies

chore: Use just to update dependencies #421

Workflow file for this run

name: API Changes
on:
pull_request:
paths:
- requirements/requirements*.txt
- src/**
- .github/workflows/api-changes.yml
- CHANGELOG.md
concurrency:
group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }}
cancel-in-progress: true
permissions: # added using https://github.com/step-security/secure-repo
contents: read
jobs:
check-api-changes:
name: Check API Changes
runs-on: ubuntu-latest
env:
NOXSESSION: api
steps:
- name: Check out the repository
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
with:
fetch-depth: 0
persist-credentials: false
- name: Setup Python
uses: actions/setup-python@0b93645e9fea7318ecaed2b359559ac225c90a2b # v5.3.0
with:
python-version: 3.x
- name: Install tools
env:
PIP_CONSTRAINT: ${{ github.workspace }}/requirements/requirements-ci.txt
run: |
python -Im pip install -U pip
pipx install griffe nox uv
pipx list
- name: Set REF
id: set-ref
if: always() && !startsWith(github.head_ref, 'release/')
run: |
echo "ref=${{ github.event.pull_request.base.sha }}" >> $GITHUB_OUTPUT
# Check API against the latest commit on the base branch
- name: Run Nox
run: |
nox -- ${{ steps.set-ref.outputs.ref }}