Update dependency python to 3.13 (#965) #961
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Test | |
# cSpell:ignore github wjdp | |
on: | |
workflow_dispatch: | |
push: | |
branches: [main] | |
pull_request: | |
branches: [main] | |
jobs: | |
build-and-check-links: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-node@v4 | |
with: { node-version-file: .nvmrc } | |
- run: npm install | |
- name: Build and check links | |
run: npm run check:links:all # command also builds the site | |
spellcheck: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-node@v4 | |
with: { node-version-file: .nvmrc } | |
- run: npm install | |
- run: npm run check:spelling | |
block-pr-from-main-branch: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Ensure PR is not on main branch | |
uses: jaegertracing/jaeger/.github/actions/block-pr-from-main-branch@main |