Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
28 changes: 28 additions & 0 deletions .github/workflows/chess.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
name: Chess Example CI

on:
push:
branches: [main, develop]
paths:
- 'examples/chess/**'
- '!examples/chess/**/*.md'
- '.github/workflows/example_reusable.yml'
- '.github/workflows/chess.yml'
pull_request:
branches: [main, develop]
paths:
- 'examples/chess/**'
- '!examples/chess/**/*.md'
- '.github/workflows/example_reusable.yml'
- '.github/workflows/chess.yml'

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

jobs:
ci:
uses: ./.github/workflows/example_reusable.yml
with:
job_name: Chess Example CI
working_directory: examples/chess
Loading