Skip to content

Commit

Permalink
cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
malmans2 committed Nov 28, 2023
1 parent 82ee60b commit 3eee1b4
Showing 1 changed file with 30 additions and 0 deletions.
30 changes: 30 additions & 0 deletions .github/ISSUE_TEMPLATE/workflows/on-push.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
name: on-push

on:
push:
branches:
- main
pull_request:
branches:
- main

concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true

defaults:
run:
shell: bash -l {0}

jobs:
validate-notebook-names:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v4
with:
python-version: 3.x
- name: Validate notebook names
run: |
python scripts/validate_notebook_names.py .

0 comments on commit 3eee1b4

Please sign in to comment.