build(deps): bump thiserror from 1.0.68 to 2.0.0 #526
Workflow file for this run
This file contains 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: Misc | |
on: | |
pull_request: | |
jobs: | |
license: | |
name: Check license headers | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Check License Header | |
uses: enarx/spdx@master | |
with: | |
licenses: Apache-2.0 MIT | |
editorconfig: | |
name: Check editorconfig | |
runs-on: ubuntu-latest | |
steps: | |
- uses: editorconfig-checker/action-editorconfig-checker@v2 | |
check-version-patch: | |
name: Check version update patch file | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Check version update patch file | |
run: python3 ci/version.py check | |
verify-antlr: | |
name: Verify ANTLR-generated code | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Check | |
working-directory: rs/antlr | |
run: python3 generate.py --ci | |
commitlint: | |
name: Lint commits for semantic-release | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- uses: actions/setup-node@v4 | |
- run: npx commitlint --from=${{ github.event.pull_request.base.sha }} --to=${{ github.sha }} --verbose |