Skip to content

ci(tools): update endbug/add-and-commit action to v11 #529

ci(tools): update endbug/add-and-commit action to v11

ci(tools): update endbug/add-and-commit action to v11 #529

Workflow file for this run

---
# yaml-language-server: $schema=https://www.schemastore.org/github-workflow.json
name: general
"on":
push:
branches:
- master
pull_request:
branches:
- master
permissions:
contents: read
jobs:
testing:
runs-on: ubuntu-latest
steps:
- name: Checkout source
uses: actions/checkout@v7
- name: Install tools
uses: jdx/mise-action@v4
- name: Run generate
run: bash hack/generate-client.sh
- name: Run install
run: poetry install
- name: Run test
run: poetry run pytest
- name: Run build
run: poetry build
...