bump chia_rs to include bugfix for new AGG_SIG_* conditions in mempool mode #31393
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
--- | |
########################### | |
########################### | |
## Linter GitHub Actions ## | |
########################### | |
########################### | |
name: 🚨 GitHub Super Linter | |
# | |
# Documentation: | |
# https://github.com/github/super-linter | |
# https://help.github.com/en/articles/workflow-syntax-for-github-actions | |
# | |
############################# | |
# Start the job on all push # | |
############################# | |
on: | |
push: | |
branches: | |
- 'long_lived/**' | |
- main | |
- 'release/**' | |
release: | |
types: [published] | |
pull_request: | |
branches: | |
- '**' | |
concurrency: | |
# SHA is added to the end if on `main` to let all main workflows run | |
group: ${{ github.ref }}-${{ github.workflow }}-${{ github.event_name }}-${{ (github.ref == 'refs/heads/main' || startsWith(github.ref, 'refs/heads/release/') || startsWith(github.ref, 'refs/heads/long_lived/')) && github.sha || '' }} | |
cancel-in-progress: true | |
############### | |
# Set the Job # | |
############### | |
jobs: | |
build: | |
# Name the Job | |
name: Lint Code Base | |
# Set the agent to run on | |
runs-on: ubuntu-latest | |
timeout-minutes: 60 | |
################## | |
# Load all steps # | |
################## | |
steps: | |
########################## | |
# Checkout the code base # | |
########################## | |
- name: Checkout Code | |
uses: actions/checkout@v3 | |
################################ | |
# Run Linter against code base # | |
################################ | |
- name: Lint Code Base | |
uses: github/super-linter@v5 | |
# uses: docker://github/super-linter:v3.10.2 | |
env: | |
VALIDATE_ALL_CODEBASE: true | |
DEFAULT_BRANCH: main | |
LINTER_RULES_PATH: . | |
MARKDOWN_CONFIG_FILE: .markdown-lint.yml | |
VALIDATE_BASH: true | |
VALIDATE_CSS: true | |
VALIDATE_DOCKER: true | |
VALIDATE_GO: true | |
VALIDATE_HTML: true | |
VALIDATE_JAVASCRIPT_ES: true | |
VALIDATE_JSON: true | |
VALIDATE_MD: true | |
VALIDATE_POWERSHELL: true | |
VALIDATE_SHELL_SHFMT: true | |
VALIDATE_TYPESCRIPT_ES: true | |
VALIDATE_YAML: true | |
DISABLE_ERRORS: false | |
PYTHONPATH: ${{ github.workspace }}:$PYTHONPATH | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
FILTER_REGEX_EXCLUDE: .*github/ISSUE_TEMPLATE/config.yml | |
# ACTIONS_RUNNER_DEBUG: true | |
... |