Skip to content

chore: prepare 0.12.1 patch release (#130) #448

chore: prepare 0.12.1 patch release (#130)

chore: prepare 0.12.1 patch release (#130) #448

Workflow file for this run

name: "Local validation"
permissions:
contents: read
on:
pull_request:
types: [opened, synchronize, reopened]
push:
branches:
- main
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
lints:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
python-version: ["3.12", "3.13"]
steps:
- uses: actions/checkout@93cb6efe18208431cddfb8368fd83d5badbf9bfd
with:
persist-credentials: false
- name: Run python setup
uses: ./.github/actions/python-setup
with:
pyproject_directory: .
python_version: ${{ matrix.python-version }}
- name: Check for formatting
run: make fmt && ./.github/scripts/fail_if_modified_files.sh
shell: bash
- name: Check lints
run: make lint
shell: bash
- name: Run tests with coverage
run: make test-coverage
shell: bash
- name: Run BDD tests
run: make test-spec
shell: bash
- name: Upload to Codecov
if: always()
uses: codecov/codecov-action@75cd11691c0faa626561e295848008c8a7dddffe
with:
files: coverage.xml
flags: v1-sdk
fail_ci_if_error: false
token: ${{ secrets.CODECOV_TOKEN }}
- name: Verify v2 mirror is in sync
run: bash .github/scripts/check_v2_sync.sh
shell: bash