Discount Node Label (node_y) in batch size calculation for Dynamic Node Property Prediction Task #1376
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: Spellcheck Action | |
| on: # yamllint disable-line rule:truthy | |
| pull_request: | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }} | |
| cancel-in-progress: true | |
| jobs: | |
| build: | |
| name: Spellcheck | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout repository | |
| uses: actions/checkout@v4 | |
| - name: Run spellcheck | |
| uses: codespell-project/actions-codespell@v2 | |
| with: | |
| ignore_words_file: .github/config/.codespellignore | |
| only_warn: 1 |